Skip to content

Commit a017bbc

Browse files
authored
Merge pull request #48 from lauracmurphy/patch-1
Fix typo in README description
2 parents b1488c5 + 564aaf8 commit a017bbc

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
[![License: CC BY 4.0](https://img.shields.io/badge/License-CC_BY_4.0-blue.svg)](https://creativecommons.org/licenses/by/4.0/)
55
[![Twitter](https://img.shields.io/twitter/follow/petebankhead?style=flat)](https://twitter.com/petebankhead)
66

7-
This book tries explain the main ideas of bioimage analysis in a practical and engaging way.
7+
This book tries to explain the main ideas of bioimage analysis in a practical and engaging way.
88

99
You're currently looking at the ReadMe - for the actual book, see https://bioimagebook.github.io

chapters/1-concepts/3-bit_depths/imagej.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ However, if we first subtract the smallest of our 16-bit values (i.e. 4000), our
242242
Make sure that the {guilabel}`Scale When Converting` option is turned on (it should be by default).
243243
Then using a suitable 8-bit sample image, e.g. {menuselection}`File --> Open Samples --> Boats`, explore the effects of brightness/contrast settings when increasing or decreasing bit-depths.
244244
245-
Can you destroy the image by simply 1) increasing the bit-depth, and the then 2) decreasing the bit-depth to its original value?
245+
Can you destroy the image by simply 1) increasing the bit-depth, and then 2) decreasing the bit-depth to its original value?
246246
247247
[![launch ImageJ.JS](https://ij.imjoy.io/assets/badge/open-in-imagej-js-badge.svg)](https://ij.imjoy.io/?run=https://gist.github.com/petebankhead/6f9f451fdc0116197501ae504a57d5e7)
248248
```

chapters/2-processing/3-thresholding/thresholding.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1007,7 +1007,7 @@ The top half of {numref}`fig-thresholds_noisy` reproduces the nuclei from {numre
10071007
Although the nuclei are still clearly visible in the image (A), the two classes of pixels (which were previously easy to separate) have now been merged together in the histogram (B).
10081008
The triangle threshold method, which had performed well before, now gives less attractive results \(C), because the noise has caused the ranges of background and nuclei pixels to overlap.
10091009

1010-
*However,* if we apply a Gaussian filter to smooth the image, a lot of the the random noise is reduced (see {ref}`chap_filters`).
1010+
*However,* if we apply a Gaussian filter to smooth the image, a lot of the random noise is reduced (see {ref}`chap_filters`).
10111011
This results in a histogram dramatically more similar to that in the original, (almost) noise-free image, and the threshold is again quite successful (F).
10121012

10131013
```{code-cell} ipython3

chapters/2-processing/7-multidimensional_processing/multidimensional_processing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ Thinning algorithms are often designed to work in 3D, although not usually highe
420420
The distance and watershed transforms extend readily to 3D, but require a little caution.
421421

422422
One thing to look out for, especially with the distance transform, is whether pixel anisotropy is taken into consideration.
423-
If not, the the distance transform will not be capable of properly identifying the 'nearest' foreground or background pixel in calibrated units, but rather only in pixel units.
423+
If not, then the distance transform will not be capable of properly identifying the 'nearest' foreground or background pixel in calibrated units, but rather only in pixel units.
424424

425425
A cumbersome workaround may be to resize the image so that the pixels *are* isotropic, but that may make every other analysis step more complicated and/or require a huge amount more memory to store the image.
426426
A preferable approach is to try to find a distance transform implementation that incorporates pixel size information into its calculations.

0 commit comments

Comments
 (0)