Logo
latest

Getting Started

  • Overview
    • License
  • Installation

Preprocessing

  • Loading Images
    • Individual Images
    • Datasets of Images
    • Supported slide types
    • Supported file formats
  • Creating Preprocessing Pipelines
    • What is a Transform?
    • What is a Pipeline?
    • Creating custom Transforms
  • Running Preprocessing Pipelines
    • How it works
    • Preprocessing a single WSI
    • Preprocessing a dataset of WSI
    • Distributed processing
  • HDF5 Integration
    • Overview
    • How it Works
    • About HDF5
    • .h5path File Format
    • Reading and Writing

Datasets

  • Datasets
    • DataModules
    • Using public datasets
    • References

Machine Learning

  • DataLoaders
  • Models
    • References

Examples

  • Loading Images: Quickstart
    • Aperio SVS
    • Generic tiled TIFF
    • Hamamatsu NDPI
    • Hamamatsu VMS
    • Leica SCN
    • MIRAX
    • Olympus VSI
    • Trestle TIFF
    • Ventana BIF
    • Zeiss ZVI
    • DICOM
    • Volumetric + time-series OME-TIFF
    • CODEX spatial proteomics
    • MERFISH spatial gene expression
    • Visium 10x spatial gene expression
  • H&E Stain Deconvolution and Color Normalization
    • References
  • Brightfield Imaging: Quickstart
  • Multiparametric Imaging: Quickstart
    • Defining a Multiparametric Pipeline
    • AnnData Integration and Spatial Single Cell Analysis
    • References
  • Multiparametric Imaging: CODEX
    • Reading the slides
    • Define and run the preprocessing pipeline
    • Extract and concatenate the resulting count matrices
    • Annotate the clusters based on the markers intensity
    • Identification of cellular neighborhoods
  • Training an ML Model (HoVer-Net)
    • Data augmentation
    • Load PanNuke dataset
    • Model Training
      • Training with multi-GPU
      • Main training loop
    • Evaluate Model
    • Examples
    • Conclusion
    • References
    • Session info
  • Preprocessing Transforms Gallery
    • Transforms that modify an image
      • Blurring Transforms
      • Superpixel Interpolation
      • Stain Normalization
    • Transforms that create a mask
      • Binary Threshold
      • Nucleus Detection
    • Transforms that modify a mask
      • Morphological Opening
      • Morphological Closing
      • Foreground Detection
      • Tissue Detection

API Reference

  • Core API
    • SlideData
      • SlideData
        • SlideData.counts
        • SlideData.extract_region()
        • SlideData.generate_tiles()
        • SlideData.plot()
        • SlideData.run()
        • SlideData.shape
        • SlideData.write()
      • Convenience SlideData Classes
        • HESlide
        • VectraSlide
        • MultiparametricSlide
        • CODEXSlide
    • Slide Types
      • SlideType
        • SlideType.asdict()
    • Tile
      • Tile
        • Tile.plot()
        • Tile.shape
    • SlideDataset
      • SlideDataset
        • SlideDataset.run()
        • SlideDataset.write()
    • Tiles and Masks helper classes
      • Tiles
        • Tiles.add()
        • Tiles.keys
        • Tiles.remove()
        • Tiles.tile_shape
        • Tiles.update()
      • Masks
        • Masks.add()
        • Masks.keys
        • Masks.remove()
        • Masks.slice()
    • Slide Backends
      • OpenslideBackend
        • OpenSlideBackend
      • BioFormatsBackend
        • BioFormatsBackend
      • DICOMBackend
        • DICOMBackend
    • h5pathManager
      • h5pathManager
        • h5pathManager.add_mask()
        • h5pathManager.add_tile()
        • h5pathManager.get_mask()
        • h5pathManager.get_slidetype()
        • h5pathManager.get_tile()
        • h5pathManager.remove_mask()
        • h5pathManager.remove_tile()
        • h5pathManager.slice_masks()
        • h5pathManager.update_mask()
  • Preprocessing API
    • Pipeline
      • Pipeline
        • Pipeline.apply()
        • Pipeline.save()
    • Transforms
      • MedianBlur
        • MedianBlur.F()
        • MedianBlur.apply()
      • GaussianBlur
        • GaussianBlur.F()
        • GaussianBlur.apply()
      • BoxBlur
        • BoxBlur.F()
        • BoxBlur.apply()
      • BinaryThreshold
        • BinaryThreshold.F()
        • BinaryThreshold.apply()
      • MorphOpen
        • MorphOpen.F()
        • MorphOpen.apply()
      • MorphClose
        • MorphClose.F()
        • MorphClose.apply()
      • ForegroundDetection
        • ForegroundDetection.F()
        • ForegroundDetection.apply()
      • SuperpixelInterpolation
        • SuperpixelInterpolation.F()
        • SuperpixelInterpolation.apply()
      • StainNormalizationHE
        • StainNormalizationHE.F()
        • StainNormalizationHE.apply()
        • StainNormalizationHE.fit_to_reference()
      • NucleusDetectionHE
        • NucleusDetectionHE.F()
        • NucleusDetectionHE.apply()
      • TissueDetectionHE
        • TissueDetectionHE.F()
        • TissueDetectionHE.apply()
      • LabelArtifactTileHE
        • LabelArtifactTileHE.F()
        • LabelArtifactTileHE.apply()
      • LabelWhiteSpaceHE
        • LabelWhiteSpaceHE.F()
        • LabelWhiteSpaceHE.apply()
      • SegmentMIF
        • SegmentMIF.F()
        • SegmentMIF.apply()
      • QuantifyMIF
        • QuantifyMIF.F()
        • QuantifyMIF.apply()
      • CollapseRunsVectra
        • CollapseRunsVectra.F()
        • CollapseRunsVectra.apply()
      • CollapseRunsCODEX
        • CollapseRunsCODEX.F()
        • CollapseRunsCODEX.apply()
      • RescaleIntensity
        • RescaleIntensity.F()
        • RescaleIntensity.apply()
      • HistogramEqualization
        • HistogramEqualization.F()
        • HistogramEqualization.apply()
      • AdaptiveHistogramEqualization
        • AdaptiveHistogramEqualization.F()
        • AdaptiveHistogramEqualization.apply()
  • Datasets API
    • PanNuke
      • PanNukeDataModule
        • PanNukeDataModule.test_dataloader
        • PanNukeDataModule.train_dataloader
        • PanNukeDataModule.valid_dataloader
    • DeepFocus
      • DeepFocusDataModule
        • DeepFocusDataModule.test_dataloader
        • DeepFocusDataModule.train_dataloader
        • DeepFocusDataModule.valid_dataloader
  • ML API
    • h5path Dataset
      • TileDataset
    • HoVer-Net
      • HoVerNet
        • HoVerNet.forward()
      • Helper functions
        • compute_hv_map()
        • loss_hovernet()
        • remove_small_objs()
        • post_process_batch_hovernet()
  • Utilities API
    • Logging Utils
      • PathMLLogger
        • PathMLLogger.disable()
        • PathMLLogger.enable()
    • Core Utils
      • readtupleh5()
      • writedataframeh5()
      • writedicth5()
      • writestringh5()
      • writetupleh5()
      • readcounts()
      • writecounts()
    • Datasets Utils
      • pannuke_multiclass_mask_to_nucleus_mask()
    • ML Utils
      • center_crop_im_batch()
      • dice_loss()
      • dice_score()
      • get_sobel_kernels()
      • wrap_transform_multichannel()
    • Miscellaneous Utils
      • upsample_array()
      • pil_to_rgb()
      • segmentation_lines()
      • plot_mask()
      • contour_centroid()
      • sort_points_clockwise()
      • pad_or_crop()
      • RGB_to_HSI()
      • RGB_to_OD()
      • RGB_to_HSV()
      • RGB_to_LAB()
      • RGB_to_GREY()
      • normalize_matrix_rows()
      • normalize_matrix_cols()
      • plot_segmentation()

Contributing

  • Contributing
    • Submitting a bug report
    • Requesting a new feature
    • For developers
      • Coordinate system conventions
      • Setting up a local development environment
      • Running tests
      • Building documentation locally
      • Checking code coverage
      • How to contribute code, documentation, etc.
      • Versioning and Distributing
      • Code Quality
      • Documentation Standards
      • Testing Standards
    • Thank You!
PathML
  • Installation
  • View PathML on GitHub
Previous Next

Installation

See https://github.com/Dana-Farber-AIOS/pathml/blob/master/README.md#Installation

Previous Next

© Copyright 2023, Dana-Farber Cancer Institute and Weill Cornell Medicine. Revision dd61eeaa.