Skip to content

Commit 8a20546

Browse files
authored
Merge pull request #2 from lauracmurphy/main
Fixing minor typos or variable names.
2 parents 0a75171 + 80936ee commit 8a20546

6 files changed

Lines changed: 14 additions & 6 deletions

File tree

data/Thumbs.db

22 KB
Binary file not shown.

data/summary

Lines changed: 0 additions & 1 deletion
This file was deleted.

data/summary.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Details of data
2+
3+
| Dataset | Source | Copyright details |
4+
| ------------- |-------------|-------------|
5+
| confocal-series_zstack.tif |[https://imagej.net/ij/images/](https://imagej.net/ij/images/)|[IDK?](https://forum.image.sc/t/fiji-imagej-open-samples-images-copyright/11406) |
6+
| Ersi_organoid_WT2.nd2|[Institute of Genetics and Cancer](https://institute-genetics-cancer.ed.ac.uk/)|CC0 1.0|
7+
| FluorescentCells_3channel.tif|[https://imagej.net/ij/images/](https://imagej.net/ij/images/)|[IDK?](https://forum.image.sc/t/fiji-imagej-open-samples-images-copyright/11406)|
8+
| hela.tif |[scitkit-image](https://gitlab.com/scikit-image/data)|CC0|
9+
| hela-cells_rgb.tif|[https://imagej.net/ij/images/](https://imagej.net/ij/images/)|[IDK?](https://forum.image.sc/t/fiji-imagej-open-samples-images-copyright/11406)|

episodes/02-applying-filters.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -215,15 +215,15 @@ image = cells3d()[30, 1, :, :]
215215
plt.figure(figsize=(10, 12))
216216

217217
plt.subplot(2, 2, 1)
218-
imshow(image)
218+
plt.imshow(image)
219219
plt.title('Original')
220220

221221
plt.subplot(2, 2, 2)
222-
imshow(difference_of_gaussians(image, 1, 2), cmap='gray')
222+
plt.imshow(difference_of_gaussians(image, 1, 2), cmap='gray')
223223
plt.title('Difference of Gaussians')
224224

225225
plt.subplot(2, 2, 3)
226-
imshow(laplace(gaussian(image, sigma=2)), cmap='gray')
226+
plt.imshow(laplace(gaussian(image, sigma=2)), cmap='gray')
227227
plt.title('Laplacian of Gaussian')
228228
```
229229

episodes/03-thresholding-and-segmentation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import matplotlib.pyplot as plt
3030
from skimage.data import cells3d
3131
from skimage.filters import gaussian
3232

33-
image = gaussian(cells3d()[30, 1, :, :])
33+
smoothed_image = gaussian(cells3d()[30, 1, :, :])
3434
print(image.min(), image.max(), image.dtype)
3535

3636
plt.subplot(1, 2, 1)

index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ These two environments have different interfaces for user interaction, but both
99
processing and analysis. Both are discussed here in order to highlight the relative strengths of each one, and
1010
to present the analysis techniques in this course as generic and independent of one particular platform.
1111

12-
The first section on Python consists of working in a Jupyter notebook setting, but can equally be done in the
12+
The first section on Python consists of working in a [Jupyter](https://jupyter.org/) notebook setting, but can equally be done in the
1313
terminal. This way of working also lends itself quite well to adapting your analysis process into a workflow that
1414
can be applied to a batch of many images.
1515

0 commit comments

Comments
 (0)