-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add image registration module skeleton
- Loading branch information
Showing
11 changed files
with
76 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
<h4 id="saturation_8bit"><a href="#saturation_8bit">Find saturated pixels in an 8-bit image</a></h4> | ||
<h4 id="saturation_12bit"><a href="#saturation_12bit">Find saturated pixels in an 12-bit image</a></h4> | ||
|
||
Saturation, i.e. pixel value at the upper end of the datatype, is a typical problem in fluorescence microscopy images. | ||
Saturation, i.e. pixel value at the upper end of the datatype, is a typical problem in fluorescence microscopy images. | ||
|
||
- Open [xy_8bit__nuclei_intensity_clipping_issue_a.tif](https://github.com/NEUBIAS/training-resources/raw/master/image_data/xy_8bit__nuclei_intensity_clipping_issue_a.tif) | ||
- Observe that this is an 8-bit image with saturation issues, i.e. many pixels of value 255 | ||
Inspecting 12-bit images, as acquired by some camera based systems, is particularly tricky, because 12-bit images are typically represented as 16-bit images, both on disk and within analysis software. | ||
|
||
- Open [xy_12bit__saturated_plant.tif](https://github.com/NEUBIAS/training-resources/raw/master/image_data/xy_12bit__saturated_plant.tif) | ||
- Observe that while this opens as 16-bit image there are many pixels at the highest value of 4095, which is the maximum of a 12-bit image. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<h4 id=act_ref><a href=#act_ref>Activity title</a></h4> |
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
<h4 id='explore3D'><a href="#explore3D">Explore the spatial calibration of a 3D image</a></h4> | ||
- Open an image and find the spatial calibration metadata; understand why this can be important. | ||
- Show how to measure the Euclidian calibrated distances of pixels in 2D and 3D. | ||
- Open an image and find the spatial calibration metadata | ||
- Understand that this is important for both rendering and measurements | ||
- Measure Euclidian calibrated distances in the image | ||
- Example image: [xyz_8bit__mitotic_plate_calibrated.tif](https://github.com/NEUBIAS/training-resources/raw/master/image_data/xyz_8bit__mitotic_plate_calibrated.tif) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
--- | ||
title: Image registration | ||
layout: module | ||
tags: ["draft"] | ||
prerequisites: | ||
- "[Correlative image rendering](../correlative_image_rendering)" | ||
- "?! A basic understanding of image transformations" | ||
objectives: | ||
- "Register one image to another" | ||
motivation: | | ||
TODO | ||
concept_map: > | ||
graph TD | ||
T1("TODO1") --> T2("TODO2") | ||
T2 --> T3("TODO3") | ||
figure: /figures/image_registration.png | ||
figure_legend: TODO | ||
|
||
multiactivities: | ||
- ["image_registration/act01.md", [["ImageJ GUI", "image_registration/act01_imagejgui.md"], ["skimage napari", "image_registration/act01_skimage_napari.py"]]] | ||
|
||
assessment: > | ||
### Fill in the blanks | ||
1. TODO ___ . | ||
1. TODO ___ . | ||
> ## Solution | ||
> 1. TODO | ||
> 1. TODO | ||
{: .solution} | ||
learn_next: | ||
- "[Automatic threshold for binarization](../auto_threshold)" | ||
|
||
external_links: | ||
- "[Wikipedia: Binary image](https://en.wikipedia.org/wiki/Binary_image)" | ||
--- | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.