eyesegpy


Nameeyesegpy JSON
Version 1.0.2 PyPI version JSON
download
home_pagehttps://github.com/MedVisBonn/eyeseg
SummaryA python command line tool to segment drusen and retinal layers in OCT images.
upload_time2023-09-28 08:24:10
maintainer
docs_urlNone
authorOlivier Morelle
requires_python>=3.8,<3.11
license
keywords ophthalmology oct segmentation spectralis drusen retina
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![PyPI version](https://badge.fury.io/py/eyesegpy.svg)](https://badge.fury.io/py/eyesegpy)
# eyeseg

eyeseg is a command line application to segment OCT layers and quantify drusen. It can read and process Spectralis XML and VOL exports. Models used for OCT layer segmentation might give unexpected results on data from other devices than Spectralis.

## Installation
You can install `eyeseg` with pip. Use a virtual environment to avoid conflicts with other packages.

```bash
pip install eyesegpy
```

For GPU access you might have to install additional dependencies such as the CUDA Toolkit and cuDNN. Predictions using only the CPU are possible but a lot slower. A convenient alternative to installing additional depencies is to use our docker image. See the section "Docker" for more information.

### Docker
You can build the docker image yourself using the Makefile in the `docker/` folder or use the prebuild images on [Docker Hub](https://hub.docker.com/r/olcifer/eyeseg).

#### Build docker image
```bash
cd docker
make build_gpu
```

#### Run docker image

Running eyeseg in a docker container on mounted data only requires a working docker installation. You need nvidia-docker2 for GPU support which sigificantly speeds up segmentations. For more information on how to install docker and nvidia-docker2, please refer to the [docker documentation](https://docs.docker.com/install/).

For CPU only support, you can use the CPU image:
```bash
docker run -u $(id -u):$(id -g) -it -v $DATA:/home/data olcifer/eyeseg:1.0.2-cpu
```
For GPU support, you can use the GPU image:
```bash
docker run -u $(id -u):$(id -g) -it --gpus=all -v $DATA:/home/data olcifer/eyeseg:1.0.2-gpu
```

In both cases you need to mount your data to the container by replacing $DATA with the path to your data. Depending on whether you want to use a prebuild image or not you have to adapt the image name. The container will run as the current user and group. This is important to avoid permission issues with the mounted data. Your working directory is your mounted data. If you just run `eyeseg segment` all volumes in the mounted folder and subfolders are processed and stored under a parent folder called `processed/`.

## Requirements
Your data has to be in the Spectralis XML or VOL export format. In case of the XML export, make sure that your data is exported with a black background and every folder contains a single volume (single XML file). There is also a model available for Bioptigen data, trained on the Duke dataset. However, Bioptigen data is not that common and the model is here mainly for reproducibility of the results described in the respective publication (https://doi.org/10.1038/s41598-023-35230-4).

## Usage
After installation via pip or starting the docker container, you can use the eyeseg command line application. You can run `eyeseg` without any arguments to see a help message.

### Available commands
`eyeseg` provides the following commands all with their own help message for more information:

* `eyeseg check` - check mounted data for common problems such as inverted contrast and multiple exports per directory (only XML)
* `eyeseg segment` - Segment OCT layers, compute drusen and save results as .eye files
* `eyeseg quantify` - Quantify drusen from .eye files and save results as .csv file
* `eyeseg plot-enface` - Plot enface images with drusen segmentation overlay
* `eyeseg plot-bscans` - Plot B-scans with layer/drusen segmentation overlay


## Examples
### Check data

```bash
eyeseg check
```

### Segmentation with default drusen threshold

```bash
eyeseg segment -t 2
```

The output is saved as a .eye file in the specified output folder (processed/ by default). The .eye file contains layer heights and drusen segmentation. The drusen segmentation is computed with a default threshold of 2. You can change the threshold with the `-t` option.

Results are stored as .eye files in the output folder. The .eye file contains the image data as well as the layer and drusen segmentations and can be loaded, visualized or further processed using the [eyepy](https://github.com/MedVisbonn/eyepy) Python package.

### Quantification with default grid

```bash
eyeseg quantify -r 0.8 -r 1.8 -s 1 -s 4 -o 0 -o 45
```

Drusen results are saved in the output folder as `drusen_results.csv`. You can change the quantification grid with the `-r`, `-s` and `-o` options.

### Plot enface overviews
Plot the localizer image with drusen overlay. Also add a rectangle for the B-scan area and lines indicating B-scan positions.

```bash
eyeseg plot-enface --drusen --bscan-area -p 52
```

The output is saved as a .jpeg file in the specified output folder (processed/ by default). An example eneface for the command above based on our models prediction is shown below.
![Enface overview](/docs/example_enface_52.jpeg)
The B-scan area is marked with a rectangle and the B-scan position of the 52th B-scan is marked with a line. The drusen segmentation is shown as a red overlay and the scale is in pixels.

### Plot B-scans
Plot bscans for the volumes indicated by the -v option. Without this option B-scans for all available volumes are plotted. If you want to plot predicted layers specify them with the -l option. By default no layers are plotted.

```bash
eyeseg plot-bscans --drusen -l BM -l RPE -v volume_name -v volume_name2
```

The output is saved as a .jpeg files in the specified output folder (processed/ by default). An example bscan for the command above based on our models prediction is shown below. It is the 52th B-scan of the same volume as in the example above.
![Bscan](/docs/example_bscan_52.jpeg)

## The quantification grid
Drusen quantification is performed on a circular grid centered on the localizer image. The grid is scaled according to the respective volumes scales provided in the meta data and flipped according to the laterality.

Arbitrary grids can be configured:
+ Specify the ring radii in ascending order in [mm] with the `-r` option.
+ Specify the respective number of sectors per ring with the `-s` option.
+ Specify the angular offset from the horizontal line in each ring in degree with the `-o` option.

By default the first sector starts on the nasal side from the horizontal line and subsequent sectors are added counter-clockwise for OD volumes and clockwise for OS volumes. See examples below:

+ Quantification grids for parameters `-r 1 -r 2 -s 1 -s 4 -o 0 -o 45`

![](./docs/grid1.jpeg)

+ Quantification grids for parameters `-r 1 -r 2 -r 3 -s 1 -s 4 -s 8 -o 0 -o 45, -o 45`

![](./docs/grid2.jpeg)
## Citation

```bibtex
@article{Morelle_Accurate_drusen_segmentation_2023,
author = {Morelle, Olivier and Wintergerst, Maximilian W. M. and Finger, Robert P. and Schultz, Thomas},
doi = {10.1038/s41598-023-35230-4},
journal = {Scientific Reports},
title = {{Accurate drusen segmentation in optical coherence tomography via order-constrained regression of retinal layer heights}},
year = {2023}
}
```


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/MedVisBonn/eyeseg",
    "name": "eyesegpy",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8,<3.11",
    "maintainer_email": "",
    "keywords": "ophthalmology,oct,segmentation,spectralis,drusen,retina",
    "author": "Olivier Morelle",
    "author_email": "oli4morelle@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/31/4e/0d0cca147f143507591c76655002cd8fabf74d0973e32a952fd1d1567f91/eyesegpy-1.0.2.tar.gz",
    "platform": null,
    "description": "[![PyPI version](https://badge.fury.io/py/eyesegpy.svg)](https://badge.fury.io/py/eyesegpy)\n# eyeseg\n\neyeseg is a command line application to segment OCT layers and quantify drusen. It can read and process Spectralis XML and VOL exports. Models used for OCT layer segmentation might give unexpected results on data from other devices than Spectralis.\n\n## Installation\nYou can install `eyeseg` with pip. Use a virtual environment to avoid conflicts with other packages.\n\n```bash\npip install eyesegpy\n```\n\nFor GPU access you might have to install additional dependencies such as the CUDA Toolkit and cuDNN. Predictions using only the CPU are possible but a lot slower. A convenient alternative to installing additional depencies is to use our docker image. See the section \"Docker\" for more information.\n\n### Docker\nYou can build the docker image yourself using the Makefile in the `docker/` folder or use the prebuild images on [Docker Hub](https://hub.docker.com/r/olcifer/eyeseg).\n\n#### Build docker image\n```bash\ncd docker\nmake build_gpu\n```\n\n#### Run docker image\n\nRunning eyeseg in a docker container on mounted data only requires a working docker installation. You need nvidia-docker2 for GPU support which sigificantly speeds up segmentations. For more information on how to install docker and nvidia-docker2, please refer to the [docker documentation](https://docs.docker.com/install/).\n\nFor CPU only support, you can use the CPU image:\n```bash\ndocker run -u $(id -u):$(id -g) -it -v $DATA:/home/data olcifer/eyeseg:1.0.2-cpu\n```\nFor GPU support, you can use the GPU image:\n```bash\ndocker run -u $(id -u):$(id -g) -it --gpus=all -v $DATA:/home/data olcifer/eyeseg:1.0.2-gpu\n```\n\nIn both cases you need to mount your data to the container by replacing $DATA with the path to your data. Depending on whether you want to use a prebuild image or not you have to adapt the image name. The container will run as the current user and group. This is important to avoid permission issues with the mounted data. Your working directory is your mounted data. If you just run `eyeseg segment` all volumes in the mounted folder and subfolders are processed and stored under a parent folder called `processed/`.\n\n## Requirements\nYour data has to be in the Spectralis XML or VOL export format. In case of the XML export, make sure that your data is exported with a black background and every folder contains a single volume (single XML file). There is also a model available for Bioptigen data, trained on the Duke dataset. However, Bioptigen data is not that common and the model is here mainly for reproducibility of the results described in the respective publication (https://doi.org/10.1038/s41598-023-35230-4).\n\n## Usage\nAfter installation via pip or starting the docker container, you can use the eyeseg command line application. You can run `eyeseg` without any arguments to see a help message.\n\n### Available commands\n`eyeseg` provides the following commands all with their own help message for more information:\n\n* `eyeseg check` - check mounted data for common problems such as inverted contrast and multiple exports per directory (only XML)\n* `eyeseg segment` - Segment OCT layers, compute drusen and save results as .eye files\n* `eyeseg quantify` - Quantify drusen from .eye files and save results as .csv file\n* `eyeseg plot-enface` - Plot enface images with drusen segmentation overlay\n* `eyeseg plot-bscans` - Plot B-scans with layer/drusen segmentation overlay\n\n\n## Examples\n### Check data\n\n```bash\neyeseg check\n```\n\n### Segmentation with default drusen threshold\n\n```bash\neyeseg segment -t 2\n```\n\nThe output is saved as a .eye file in the specified output folder (processed/ by default). The .eye file contains layer heights and drusen segmentation. The drusen segmentation is computed with a default threshold of 2. You can change the threshold with the `-t` option.\n\nResults are stored as .eye files in the output folder. The .eye file contains the image data as well as the layer and drusen segmentations and can be loaded, visualized or further processed using the [eyepy](https://github.com/MedVisbonn/eyepy) Python package.\n\n### Quantification with default grid\n\n```bash\neyeseg quantify -r 0.8 -r 1.8 -s 1 -s 4 -o 0 -o 45\n```\n\nDrusen results are saved in the output folder as `drusen_results.csv`. You can change the quantification grid with the `-r`, `-s` and `-o` options.\n\n### Plot enface overviews\nPlot the localizer image with drusen overlay. Also add a rectangle for the B-scan area and lines indicating B-scan positions.\n\n```bash\neyeseg plot-enface --drusen --bscan-area -p 52\n```\n\nThe output is saved as a .jpeg file in the specified output folder (processed/ by default). An example eneface for the command above based on our models prediction is shown below.\n![Enface overview](/docs/example_enface_52.jpeg)\nThe B-scan area is marked with a rectangle and the B-scan position of the 52th B-scan is marked with a line. The drusen segmentation is shown as a red overlay and the scale is in pixels.\n\n### Plot B-scans\nPlot bscans for the volumes indicated by the -v option. Without this option B-scans for all available volumes are plotted. If you want to plot predicted layers specify them with the -l option. By default no layers are plotted.\n\n```bash\neyeseg plot-bscans --drusen -l BM -l RPE -v volume_name -v volume_name2\n```\n\nThe output is saved as a .jpeg files in the specified output folder (processed/ by default). An example bscan for the command above based on our models prediction is shown below. It is the 52th B-scan of the same volume as in the example above.\n![Bscan](/docs/example_bscan_52.jpeg)\n\n## The quantification grid\nDrusen quantification is performed on a circular grid centered on the localizer image. The grid is scaled according to the respective volumes scales provided in the meta data and flipped according to the laterality.\n\nArbitrary grids can be configured:\n+ Specify the ring radii in ascending order in [mm] with the `-r` option.\n+ Specify the respective number of sectors per ring with the `-s` option.\n+ Specify the angular offset from the horizontal line in each ring in degree with the `-o` option.\n\nBy default the first sector starts on the nasal side from the horizontal line and subsequent sectors are added counter-clockwise for OD volumes and clockwise for OS volumes. See examples below:\n\n+ Quantification grids for parameters `-r 1 -r 2 -s 1 -s 4 -o 0 -o 45`\n\n![](./docs/grid1.jpeg)\n\n+ Quantification grids for parameters `-r 1 -r 2 -r 3 -s 1 -s 4 -s 8 -o 0 -o 45, -o 45`\n\n![](./docs/grid2.jpeg)\n## Citation\n\n```bibtex\n@article{Morelle_Accurate_drusen_segmentation_2023,\nauthor = {Morelle, Olivier and Wintergerst, Maximilian W. M. and Finger, Robert P. and Schultz, Thomas},\ndoi = {10.1038/s41598-023-35230-4},\njournal = {Scientific Reports},\ntitle = {{Accurate drusen segmentation in optical coherence tomography via order-constrained regression of retinal layer heights}},\nyear = {2023}\n}\n```\n\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "A python command line tool to segment drusen and retinal layers in OCT images.",
    "version": "1.0.2",
    "project_urls": {
        "Homepage": "https://github.com/MedVisBonn/eyeseg",
        "Repository": "https://github.com/MedVisBonn/eyeseg"
    },
    "split_keywords": [
        "ophthalmology",
        "oct",
        "segmentation",
        "spectralis",
        "drusen",
        "retina"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e2a21e78daa6bf9df826b25dded75427b217b9f5011419f2718367576fe5bf40",
                "md5": "2e8a7353ea62dfd9ee6261fd84ea4ca7",
                "sha256": "32988e8615b8972b2d3788315aa703ee4512d5440d2b23378305201235d03728"
            },
            "downloads": -1,
            "filename": "eyesegpy-1.0.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "2e8a7353ea62dfd9ee6261fd84ea4ca7",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8,<3.11",
            "size": 13251263,
            "upload_time": "2023-09-28T08:24:08",
            "upload_time_iso_8601": "2023-09-28T08:24:08.021292Z",
            "url": "https://files.pythonhosted.org/packages/e2/a2/1e78daa6bf9df826b25dded75427b217b9f5011419f2718367576fe5bf40/eyesegpy-1.0.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "314e0d0cca147f143507591c76655002cd8fabf74d0973e32a952fd1d1567f91",
                "md5": "77e6827883bcea99f2662f7496230329",
                "sha256": "5e21981d20ed706eeb170d76544ac678cf4908dd8f2084c3d06a817397817867"
            },
            "downloads": -1,
            "filename": "eyesegpy-1.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "77e6827883bcea99f2662f7496230329",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8,<3.11",
            "size": 13236988,
            "upload_time": "2023-09-28T08:24:10",
            "upload_time_iso_8601": "2023-09-28T08:24:10.733724Z",
            "url": "https://files.pythonhosted.org/packages/31/4e/0d0cca147f143507591c76655002cd8fabf74d0973e32a952fd1d1567f91/eyesegpy-1.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-09-28 08:24:10",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "MedVisBonn",
    "github_project": "eyeseg",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "eyesegpy"
}
        
Elapsed time: 0.11942s