Skip to main content

An easy-to-use microscopy image stitching and processing tool

Project description

EZStitcher Logo

EZStitcher

PyPI version Documentation Status License: MIT Coverage

Powerful Microscopy Image Processing Made Simple

EZStitcher is a high-performance Python library that transforms complex microscopy image processing into simple, intuitive workflows. Built on top of the robust Ashlar stitching engine, it provides a flexible pipeline architecture that makes processing large microscopy datasets effortless.

🚀 Key Features

  • Intelligent Z-Stack Processing

    • Advanced focus detection and quality metrics
    • Multiple projection methods (max, mean, best-focus)
    • Per-plane 3D stitching support
  • Multi-Channel Excellence

    • Process multiple fluorescence channels independently
    • Create channel-specific processing pipelines
    • Generate composite images with custom weighting
  • Automated Workflow Management

    • Smart microscope format detection
    • Automatic directory management
    • Built-in multithreading support
  • Research-Ready Architecture

    • Clean, object-oriented API
    • Extensible pipeline system
    • Seamless integration with other Python tools
    • Comprehensive testing suite

🎯 Supported Microscopes

  • ImageXpress
  • Opera Phenix
  • Extensible architecture for adding new microscope types

⚡ Quick Start

# Install with pyenv (recommended)
pyenv install 3.11
pyenv global 3.11

# Create and activate virtual environment
python -m venv .venv
source .venv/bin/activate

# Install EZStitcher
pip install ezstitcher

📊 Basic Usage

from ezstitcher.core.config import PipelineConfig
from ezstitcher.core.pipeline_orchestrator import PipelineOrchestrator
from ezstitcher.core.pipeline import Pipeline
from ezstitcher.core.steps import Step, PositionGenerationStep, ImageStitchingStep
from ezstitcher.core.image_processor import ImageProcessor as IP
from pathlib import Path

# Initialize configuration and orchestrator
config = PipelineConfig(num_workers=2)  # Use 2 worker threads
orchestrator = PipelineOrchestrator(
    config=config,
    plate_path=Path("/path/to/plate")
)

# Define a complete processing pipeline
pipeline = Pipeline(
    input_dir=orchestrator.workspace_path,
    steps=[
        Step(
            name="Normalize Images",
            func=IP.stack_percentile_normalize
        ),
        PositionGenerationStep(),
        ImageStitchingStep()
    ],
    name="Basic Processing Pipeline"
)

# Execute with automatic directory management
success = orchestrator.run(pipelines=[pipeline])

📊 Advanced Usage Example

from ezstitcher.core.config import PipelineConfig
from ezstitcher.core.pipeline_orchestrator import PipelineOrchestrator
from ezstitcher.core.pipeline import Pipeline
from ezstitcher.core.steps import Step, PositionGenerationStep, ImageStitchingStep
from ezstitcher.core.image_processor import ImageProcessor as IP
from ezstitcher.core.utils import stack
from n2v.models import N2V
from basicpy import BaSiC
from pathlib import Path
import numpy as np

# Custom processing functions
def n2v_process(images, model_path):
    """Apply Noise2Void denoising to images"""
    model = N2V(None, model_path, 'N2V')
    return [model.predict(img, 'N2V') for img in images]

def basic_process(images):
    """Apply BaSiC illumination correction"""
    basic = BaSiC()
    basic.fit(np.stack(images))
    return list(basic.transform(np.stack(images)))

def generate_position_pipeline(orchestrator, n2v_model_path):
    """Generate pipeline for position file creation"""
    return Pipeline(
        steps=[
            Step(func=IP.stack_percentile_normalize,
                 input_dir=orchestrator.workspace_path),
            Step(func=(IP.create_projection, {'method': 'max_projection'}),
                variable_components=['z_index']),
            Step(func=IP.create_composite,
                variable_components=['channel']),
            PositionGenerationStep()
        ])

def generate_stitching_pipeline(orchestrator, n2v_model_path):
    """Generate pipeline for image stitching"""
    return Pipeline(
        steps=[
            Step(func=(stack(n2v_process), {'model_path': n2v_model_path}),
                 input_dir=orchestrator.workspace_path),
            Step(func=stack(basic_process)),
            Step(func=IP.stack_percentile_normalize),
            Step(func=IP.stack_histogram_match),
            ImageStitchingStep(positions_file='positions.json')
        ])

# Process a plate with both pipelines
orchestrator.run(pipelines=[
    generate_position_pipeline(orchestrator, n2v_model_path),
    generate_stitching_pipeline(orchestrator, n2v_model_path)
])

📚 Documentation

Comprehensive documentation is available at Read the Docs, including:

  • Detailed tutorials and examples
  • Advanced usage patterns
  • API reference
  • Best practices
  • Performance optimization guides

🤝 Contributing

We welcome contributions! Check out our Contributing Guide to get started.

📄 License

EZStitcher is released under the MIT License. See the LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ezstitcher-0.1.40.tar.gz (64.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ezstitcher-0.1.40-py3-none-any.whl (71.1 kB view details)

Uploaded Python 3

File details

Details for the file ezstitcher-0.1.40.tar.gz.

File metadata

  • Download URL: ezstitcher-0.1.40.tar.gz
  • Upload date:
  • Size: 64.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.12

File hashes

Hashes for ezstitcher-0.1.40.tar.gz
Algorithm Hash digest
SHA256 fdbe0eff0f333560f2352b2d9bb42052c96f0c2786e843bb896123d95306351a
MD5 71b834144469a4c714af558a6b352186
BLAKE2b-256 51097245c503c44bc438acf08d43092321bcc46369d19f31d4bb238eff8a3609

See more details on using hashes here.

File details

Details for the file ezstitcher-0.1.40-py3-none-any.whl.

File metadata

  • Download URL: ezstitcher-0.1.40-py3-none-any.whl
  • Upload date:
  • Size: 71.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.12

File hashes

Hashes for ezstitcher-0.1.40-py3-none-any.whl
Algorithm Hash digest
SHA256 0cebb9f40bec01ae829d22df43e6931e68cc449fdd8fe9d321241f980cd0afcb
MD5 9556964197b90eb1050ba66fa5a77be8
BLAKE2b-256 dfd19b393feb4486f3f79f9f05699464c186d0946c0dc6b6615ff2d3fe4212b2

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page