WSIPreToolkit


NameWSIPreToolkit JSON
Version 0.0.2 PyPI version JSON
download
home_pagehttps://github.com/Manas1820/WSIPreToolkit
SummaryWSIPreToolkit is a python package that provides tools for enhancing medical images.
upload_time2023-05-19 19:04:13
maintainer
docs_urlNone
authorManas Gupta
requires_python
licenseMIT
keywords pypi wsi medical
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # WSIPreToolkit Documentation

The `WSIPreToolkit` is a Python package that provides various tools for working with tissue images, particularly whole slide images (WSIs). It offers functionality for detecting tissue regions, cropping images, generating patches, and more. This document provides an overview of the package and its usage.

## Installation

To install the `WSIPreToolkit` package, you can use `pip`:

```bash
pip install WSIPreToolkit
```

## Usage

### Importing the Package

To use the `WSIPreToolkit` package, you need to import it in your Python script or notebook:

```python
from WSIPreToolkit import WSIPreToolkit
```

### Tissue Detection

The `WSIPreToolkit` class provides a method `detect_tissue` for detecting tissue regions in a whole slide image (WSI). It takes the path to the WSI file as input and returns the contours outlining the detected tissue regions, the computed tier array from the mask, the RGB image of the downsampled WSI, and the actual downsampling factor used. Here's an example:

```python
toolkit = WSIPreToolkit()
mask_contours, tier, slide, downsampling_factor = toolkit.detect_tissue(image_location)
```

### Drawing Tissue Polygons

The `WSIPreToolkit` class includes a method `draw_tissue_polygons` for drawing tissue polygons on a mask image. It takes the input mask image, a list of polygons to be drawn, the type of polygons ('line' or 'area'), and an optional line thickness for 'line' type polygons. Here's an example:

```python
mask = toolkit.draw_tissue_polygons(mask, polygons, polygon_type='line', line_thickness=2)
```

### Cropping Tissue Regions

The `WSIPreToolkit` class provides a method `tissue_cutout` for extracting the tissue region from a slide image based on tissue contours. It takes the tissue slide image, the list of tissue contours, and the original slide image as input and returns the extracted tissue region. Here's an example:

```python
tissue_only = toolkit.tissue_cutout(tissue_slide, tissue_contours, slide)
```

### Cropping and Removing Empty Space

The `WSIPreToolkit` class includes a method `detect_and_crop` for detecting tissue in an image, cropping it, and removing empty space. It takes the path or location of the image file as input, along with optional parameters such as sensitivity, downsample rate, and show plot type. It returns the cropped image with removed empty space or None if no tissue contours were found. Here's an example:

```python
cropped_image = toolkit.detect_and_crop(image_location, sensitivity=1500, downsample_rate=4, show_plots='simple')
```

### Generating Patches

The `WSIPreToolkit` class provides a method `generate_patches` for generating patches from an image with specified patch size and overlap. It takes the image location, patch size, overlap, and TIL score threshold as input and returns an array containing the generated patches or None if the image cannot be loaded. Here's an example:

```python
patches = toolkit.generate_patches(image_location, patch_size=(224, 224, 3), overlap=(112, 112, 0), til_score=0)
```

## Conclusion

The `WSI_Pre_Toolkit` package offers a range of tools for working with tissue images, including tissue detection, cropping, patch generation, and more. By using this package, you can streamline your workflow when working with tissue images and extract relevant information efficiently.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Manas1820/WSIPreToolkit",
    "name": "WSIPreToolkit",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "pypi,WSI,medical",
    "author": "Manas Gupta",
    "author_email": "manasgupta1820@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/c0/85/790975189f8a899a197628ce81be95eee581fc570f82c62b4bd7ea89d324/WSIPreToolkit-0.0.2.tar.gz",
    "platform": null,
    "description": "# WSIPreToolkit Documentation\n\nThe `WSIPreToolkit` is a Python package that provides various tools for working with tissue images, particularly whole slide images (WSIs). It offers functionality for detecting tissue regions, cropping images, generating patches, and more. This document provides an overview of the package and its usage.\n\n## Installation\n\nTo install the `WSIPreToolkit` package, you can use `pip`:\n\n```bash\npip install WSIPreToolkit\n```\n\n## Usage\n\n### Importing the Package\n\nTo use the `WSIPreToolkit` package, you need to import it in your Python script or notebook:\n\n```python\nfrom WSIPreToolkit import WSIPreToolkit\n```\n\n### Tissue Detection\n\nThe `WSIPreToolkit` class provides a method `detect_tissue` for detecting tissue regions in a whole slide image (WSI). It takes the path to the WSI file as input and returns the contours outlining the detected tissue regions, the computed tier array from the mask, the RGB image of the downsampled WSI, and the actual downsampling factor used. Here's an example:\n\n```python\ntoolkit = WSIPreToolkit()\nmask_contours, tier, slide, downsampling_factor = toolkit.detect_tissue(image_location)\n```\n\n### Drawing Tissue Polygons\n\nThe `WSIPreToolkit` class includes a method `draw_tissue_polygons` for drawing tissue polygons on a mask image. It takes the input mask image, a list of polygons to be drawn, the type of polygons ('line' or 'area'), and an optional line thickness for 'line' type polygons. Here's an example:\n\n```python\nmask = toolkit.draw_tissue_polygons(mask, polygons, polygon_type='line', line_thickness=2)\n```\n\n### Cropping Tissue Regions\n\nThe `WSIPreToolkit` class provides a method `tissue_cutout` for extracting the tissue region from a slide image based on tissue contours. It takes the tissue slide image, the list of tissue contours, and the original slide image as input and returns the extracted tissue region. Here's an example:\n\n```python\ntissue_only = toolkit.tissue_cutout(tissue_slide, tissue_contours, slide)\n```\n\n### Cropping and Removing Empty Space\n\nThe `WSIPreToolkit` class includes a method `detect_and_crop` for detecting tissue in an image, cropping it, and removing empty space. It takes the path or location of the image file as input, along with optional parameters such as sensitivity, downsample rate, and show plot type. It returns the cropped image with removed empty space or None if no tissue contours were found. Here's an example:\n\n```python\ncropped_image = toolkit.detect_and_crop(image_location, sensitivity=1500, downsample_rate=4, show_plots='simple')\n```\n\n### Generating Patches\n\nThe `WSIPreToolkit` class provides a method `generate_patches` for generating patches from an image with specified patch size and overlap. It takes the image location, patch size, overlap, and TIL score threshold as input and returns an array containing the generated patches or None if the image cannot be loaded. Here's an example:\n\n```python\npatches = toolkit.generate_patches(image_location, patch_size=(224, 224, 3), overlap=(112, 112, 0), til_score=0)\n```\n\n## Conclusion\n\nThe `WSI_Pre_Toolkit` package offers a range of tools for working with tissue images, including tissue detection, cropping, patch generation, and more. By using this package, you can streamline your workflow when working with tissue images and extract relevant information efficiently.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "WSIPreToolkit is a python package that provides tools for enhancing medical images.",
    "version": "0.0.2",
    "project_urls": {
        "Bug Tracker": "https://github.com/Manas1820/WSIPreToolkit/issues",
        "Download": "https://github.com/Manas1820/WSIPreToolkit/archive/refs/tags/v0.0.2.tar.gz",
        "Homepage": "https://github.com/Manas1820/WSIPreToolkit"
    },
    "split_keywords": [
        "pypi",
        "wsi",
        "medical"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c085790975189f8a899a197628ce81be95eee581fc570f82c62b4bd7ea89d324",
                "md5": "667df209fa708cf922f2bf902bf73041",
                "sha256": "6547a69d1eb7969b3d0f0730af7caa5841f9602fa63b3c1a8490ac38c3d8bd78"
            },
            "downloads": -1,
            "filename": "WSIPreToolkit-0.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "667df209fa708cf922f2bf902bf73041",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 8028,
            "upload_time": "2023-05-19T19:04:13",
            "upload_time_iso_8601": "2023-05-19T19:04:13.416212Z",
            "url": "https://files.pythonhosted.org/packages/c0/85/790975189f8a899a197628ce81be95eee581fc570f82c62b4bd7ea89d324/WSIPreToolkit-0.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-05-19 19:04:13",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Manas1820",
    "github_project": "WSIPreToolkit",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "wsipretoolkit"
}
        
Elapsed time: 0.06756s