Skip to main content

procedures for wsi analysis

Project description

PathAIA

Simple digital pathology analysis tools.


Basic UsageAdvanced featuresDocsCommunityLicense

PyPI - Python Version PyPI Status PyPI Status codecov Documentation Status license


PathAIA aims to standardize and automate most of WSI analysis in digital pathology

If you feel like you keep rewriting the same code over and over again when working on Whole Slide Images and you wish there were a nicely integrated library to automate all this, you came to the right place. With PathAIA we aim to create a fast, high level and modular library to work on WSI at scale in order to perform image analysis or to create a well rounded dataset for your machine learning project.


Basic Usage

Step 0: Install

Simple installation from PyPI

pip install pathaia

Step 1: Import pathaia's patch extraction tool

from pathaia.patches import patchify_folder_hierarchically

Step 2: Define your extraction parameters

You can extract at multiple pyramid levels with a hierarchical structure between patches of different levels. You can control pretty much every extraction parameter you like, from patch size to interval between patches or filters to chose which patch to extract. You can also decide whether you want to save patches as png or just extract coordinates in csv.

infolder = "/path/to/input/slide/folder"
outfolder = "/path/to/output/patches/folder"
top_level = 5
low_level = 0
psize = 224
interval = {"x": 224, "y": 224}
silent = list(range(low_level, top_level+1))
extensions = [".svs"]
recurse = False
slide_filters = ["full"]
verbose = 2

With these parameters you will find all svs slides that are directly in infolder and extract patch coordinates from levels 0 to 5 with a hierarchical structure. No png image will be stored as silent lists all levels. Patches will be contiguous with size 224 and will only be extracted from tissue zone that are determined by filtering on slide thumbnails. With verbose=2 thumbnails of extracted areas are also stored on disk.

Step 3: Extract !

patchify_folder_hierarchically(
    infolder,
    outfolder,
    top_level,
    low_level,
    psize,
    interval,
    silent=silent,
    extensions=extensions,
    recurse=recurse,
    slide_filters=slide_filters,
    verbose=verbose,
)

Output csv will look like :

id parent level x y dx dy
Patch identifier Parent identifier int (0, max level) int int int int
#1 None 2 0 0 996 996
#1#1 #1 1 0 0 448 448
#1#1#1 #1#1 0 0 0 224 224
#1#1#2 #1#1 0 0 224 224 224
... ... ... ... ... ... ...

Advanced features

You can use more advanced features to work on slides, most notably using your custom filters. Check documentation for more info.


Community

The lightning community is maintained by 4 core contributors from Institut Universitaire du Cancer de Toulouse - Oncopole:

Asking for help

If you have any questions please:

  1. Read the docs.
  2. Check existing issues, or add a new issue

License

Please observe the GNU GPL 3.0 license that is listed in this repository.

BibTeX

If you want to cite the framework feel free to use this.

@article{pathaia2021,
  title={PathAIA},
  author={Abreu, A and .al},
  journal={GitHub. Note: https://github.com/ArnaudAbreu/PathAIA},
  volume={3},
  year={2021}
}

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

pathaia-0.2.6.tar.gz (57.2 kB view details)

Uploaded Source

Built Distribution

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

pathaia-0.2.6-py3-none-any.whl (64.7 kB view details)

Uploaded Python 3

File details

Details for the file pathaia-0.2.6.tar.gz.

File metadata

  • Download URL: pathaia-0.2.6.tar.gz
  • Upload date:
  • Size: 57.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for pathaia-0.2.6.tar.gz
Algorithm Hash digest
SHA256 672b894fa600ce93a88bdc5c8c19a6de31f5b81d004a77966fdeb41fa0064b4a
MD5 adb82d94867ce4641bb1fcc726939f36
BLAKE2b-256 19c61dd799295414b3c26cfd8b3f0020c84f48293d3c58826c5eb9c9f8b39562

See more details on using hashes here.

File details

Details for the file pathaia-0.2.6-py3-none-any.whl.

File metadata

  • Download URL: pathaia-0.2.6-py3-none-any.whl
  • Upload date:
  • Size: 64.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for pathaia-0.2.6-py3-none-any.whl
Algorithm Hash digest
SHA256 e3a35984b3c741191ccbb8c180c465b82d9df492e1fde19aae3baa8ed345b4f0
MD5 ea107ae785a82c225fea6bbe440c7e8b
BLAKE2b-256 479b87cd767815b24cefb1034a4d46a49f8fda5b1c89f4847d4442210e4efb87

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