-
Pierre Tocquin authored
The newly added README provides a comprehensive overview of the automated pipeline for processing microscopy images from CZI format to TIFF, including segmentation using Ilastik. It details features, setup instructions, dependencies, usage guidelines, and troubleshooting tips, significantly improving documentation and aiding user understanding and implementation of the process.
Pierre Tocquin authoredThe newly added README provides a comprehensive overview of the automated pipeline for processing microscopy images from CZI format to TIFF, including segmentation using Ilastik. It details features, setup instructions, dependencies, usage guidelines, and troubleshooting tips, significantly improving documentation and aiding user understanding and implementation of the process.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
- Automated CZI to Ilastik Processing Pipeline
- Author: Pierre Tocquin (University of Liège)
- Overview
- Features
- Dependencies
- Python Libraries:
- Ilastik:
- Setup
- Clone the repository:
- Install dependencies:
- Prepare the configuration file:
- Usage
- Command-Line Arguments:
- Example:
- How It Works
- Configuration Parameters
- Output Files
- Troubleshooting
- License
README.md 6.00 KiB
Automated CZI to Ilastik Processing Pipeline
Author: Pierre Tocquin (University of Liège)
Overview
This script automates the processing of microscopy images in the CZI format. It provides functionalities to:
- Convert CZI files into mosaics stored as TIFF files.
- Perform segmentation of the mosaics using Ilastik in headless mode.
- Correct segmentation issues, including:
- Identifying and preserving true nodes of Ranvier based on size and shape.
- Filling interruptions in nerve segments caused by gaps in segmentation.
- Applying morphological operations to refine segmentation results.
- Resize both original and segmented outputs for downstream analysis.
- Optimize disk usage by removing intermediate files.
Features
- Mosaic Assembly: Converts tiled CZI images into complete mosaics stored as TIFF files.
- Segmentation: Leverages Ilastik for pixel classification in headless mode.
-
Segmentation Correction:
- Preserves true nodes of Ranvier based on cluster size and aspect ratio.
- Removes thin or irregular structures via morphological operations.
- Fills white gaps in blue regions (nerve interruptions).
- Resizing: Scales the original and segmented images according to user-defined factors.
- Intermediate File Cleanup: Removes intermediate TIFF files to save disk space.
Dependencies
Python Libraries:
-
PyYAML: For reading the YAML configuration file.
pip install pyyaml
-
aicspylibczi: For handling CZI files.
pip install aicspylibczi
-
tifffile: For managing TIFF files.
pip install tifffile
-
OpenCV: For image resizing and morphological operations.
pip install opencv-python-headless
Ilastik:
- Ilastik must be installed for pixel classification in headless mode.
- Download Ilastik.
Setup
Clone the repository:
git clone <repository-url>
cd <repository-directory>
Install dependencies:
pip install -r requirements.txt
(Alternatively, install the dependencies manually as listed above.)
Prepare the configuration file:
Create or edit a YAML file (e.g., config.yaml
) with the following parameters:
output_dir: ./output
compression: lzw
resize_factor: 0.25
project: /path/to/ilastik_project.ilp
ilastik: /path/to/ilastik_executable
area_threshold: 50
closing_kernel_size: 11
aspect_ratio_min: 1.5
aspect_ratio_max: 5
Usage
Run the script with the following command:
python process_pipeline.py file1.czi file2.czi ... --config /path/to/config.yaml
Command-Line Arguments:
-
file1.czi file2.czi ...
: List of CZI files to process. -
--config /path/to/config.yaml
: Path to the configuration file.
Example:
python process_pipeline.py sample1.czi sample2.czi --config config.yaml
How It Works
-
CZI File Processing:
- The script reads tiled data from the CZI file and assembles it into a mosaic saved as a TIFF.
-
Segmentation:
- The mosaic is passed to Ilastik in headless mode for segmentation.
-
Segmentation Correction:
-
Red Cluster Filtering: Red clusters (representing nodes of Ranvier) are identified based on:
- Minimum area (
area_threshold
). - Aspect ratio (
aspect_ratio_min
,aspect_ratio_max
).
- Minimum area (
-
Morphological Refinement:
- Thin structures are removed using erosion + dilation.
- Interruptions in nerve segments are filled with morphological closing.
-
Red Cluster Filtering: Red clusters (representing nodes of Ranvier) are identified based on:
-
Image Resizing:
- Both the original mosaic and segmented outputs are resized using a scaling factor (
resize_factor
).
- Both the original mosaic and segmented outputs are resized using a scaling factor (
-
Intermediate File Cleanup:
- Intermediate TIFF files are removed to save disk space.
Configuration Parameters
Parameter | Description | Example |
---|---|---|
output_dir |
Directory where processed files are saved. | ./output |
compression |
Compression type for TIFF files. | lzw |
resize_factor |
Scaling factor for resizing images. | 0.25 |
project |
Path to the Ilastik project file (.ilp ). |
/path/to/project.ilp |
ilastik |
Path to the Ilastik executable. | /path/to/ilastik |
area_threshold |
Minimum size of red clusters (nodes of Ranvier). | 50 |
closing_kernel_size |
Kernel size for filling interruptions in blue regions (nerve segments). | 11 |
aspect_ratio_min |
Minimum aspect ratio for identifying true nodes of Ranvier. | 1.5 |
aspect_ratio_max |
Maximum aspect ratio for identifying true nodes of Ranvier. | 5 |
Output Files
- Original TIFF: The assembled mosaic from the input CZI file.
- Segmented TIFF: The output from Ilastik after pixel classification.
- Corrected TIFF: The segmented image after corrections for segmentation issues.
- Resized TIFFs: Resized versions of the original and segmented images.
Troubleshooting
-
Error: Ilastik not found:
- Ensure the path to the Ilastik executable is correct in the configuration file.
-
FileNotFoundError for CZI files:
- Verify the input file paths and ensure they exist.
-
Incorrect segmentation:
- Adjust the
area_threshold
,aspect_ratio_min
, andaspect_ratio_max
inconfig.yaml
.
- Adjust the
License
This project is licensed under the MIT License. See the LICENSE
file for details.