cucim-cu11


Namecucim-cu11 JSON
Version 24.8.0 PyPI version JSON
download
home_pageNone
SummarycuCIM - an extensible toolkit designed to provide GPU accelerated I/O, computer vision & image processing primitives for N-Dimensional images with a focus on biomedical imaging.
upload_time2024-08-08 12:49:12
maintainerNone
docs_urlNone
authorNVIDIA Corporation
requires_python>=3.9
licenseApache 2.0
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # <div align="left"><img src="https://rapids.ai/assets/images/rapids_logo.png" width="90px"/>&nbsp;cuCIM</div>

[RAPIDS](https://rapids.ai) cuCIM is an open-source, accelerated computer vision and image processing software library for multidimensional images used in biomedical, geospatial, material and life science, and remote sensing use cases.

cuCIM offers:

- Enhanced Image Processing Capabilities for large and n-dimensional tag image file format (TIFF) files
- Accelerated performance through Graphics Processing Unit (GPU)-based image processing and computer vision primitives
- A Straightforward Pythonic Interface with Matching Application Programming Interface (API) for Openslide

cuCIM supports the following formats:

- Aperio ScanScope Virtual Slide (SVS)
- Philips TIFF
- Generic Tiled, Multi-resolution RGB TIFF files with the following compression schemes:
  - No Compression
  - JPEG
  - JPEG2000
  - Lempel-Ziv-Welch (LZW)
  - Deflate

**NOTE:** For the latest stable [README.md](https://github.com/rapidsai/cucim/blob/main/README.md) ensure you are on the `main` branch.

- [GTC 2022 Accelerating Storage IO to GPUs with Magnum IO [S41347]](https://events.rainfocus.com/widget/nvidia/gtcspring2022/sessioncatalog/session/1634960000577001Etxp)
  - cuCIM's GDS API examples: <https://github.com/NVIDIA/MagnumIO/tree/main/gds/readers/cucim-gds>
- [SciPy 2021 cuCIM - A GPU image I/O and processing library](https://www.scipy2021.scipy.org/)
  - [video](https://youtu.be/G46kOOM9xbQ)
- [GTC 2021 cuCIM: A GPU Image I/O and Processing Toolkit [S32194]](https://www.nvidia.com/en-us/on-demand/search/?facet.mimetype[]=event%20session&layout=list&page=1&q=cucim&sort=date)
  - [video](https://www.nvidia.com/en-us/on-demand/session/gtcspring21-s32194/)

**[Developer Page](https://developer.nvidia.com/multidimensional-image-processing)**

**Blogs**
- [Enhanced Image Analysis with Multidimensional Image Processing](https://developer.nvidia.com/blog/enhanced-image-analysis-with-multidimensional-image-processing/)
- [Accelerating Scikit-Image API with cuCIM: n-Dimensional Image Processing and IO on GPUs](https://developer.nvidia.com/blog/cucim-rapid-n-dimensional-image-processing-and-i-o-on-gpus/)
- [Accelerating Digital Pathology Pipelines with NVIDIA Claraâ„¢ Deploy](https://developer.nvidia.com/blog/accelerating-digital-pathology-pipelines-with-nvidia-clara-deploy-2/)

**Webinars**

- [cuCIM: a GPU Image IO and Processing Library](https://www.youtube.com/watch?v=G46kOOM9xbQ)

**[Documentation](https://docs.rapids.ai/api/cucim/stable)**

**Release notes** are available on our [wiki page](https://github.com/rapidsai/cucim/wiki/Release-Notes).

## Install cuCIM

### Conda

#### [Conda (stable)](https://anaconda.org/rapidsai/cucim)

```bash
conda create -n cucim -c rapidsai -c conda-forge cucim cuda-version=`<CUDA version>`
```

`<CUDA version>` should be 11.2+ (e.g., `11.2`, `12.0`, etc.)

#### [Conda (nightlies)](https://anaconda.org/rapidsai-nightly/cucim)

```bash
conda create -n cucim -c rapidsai-nightly -c conda-forge cucim cuda-version=`<CUDA version>`
```

`<CUDA version>` should be 11.2+ (e.g., `11.2`, `12.0`, etc.)

### [PyPI](https://pypi.org/project/cucim/)

Install for CUDA 12:

```bash
pip install cucim-cu12
```

Alternatively install for CUDA 11:

```bash
pip install cucim-cu11
```

### Notebooks

Please check out our [Welcome](notebooks/Welcome.ipynb) notebook ([NBViewer](https://nbviewer.org/github/rapidsai/cucim/blob/main/notebooks/Welcome.ipynb))

#### Downloading sample images

To download images used in the notebooks, please execute the following commands from the repository root folder to copy sample input images into `notebooks/input` folder:

(You will need [Docker](https://www.docker.com/) installed in your system)

```bash
./run download_testdata
```
or

```bash
mkdir -p notebooks/input
tmp_id=$(docker create gigony/svs-testdata:little-big)
docker cp $tmp_id:/input notebooks
docker rm -v ${tmp_id}
```

## Build/Install from Source

See build [instructions](CONTRIBUTING.md#setting-up-your-build-environment).

## Contributing Guide

Contributions to cuCIM are more than welcome!
Please review the [CONTRIBUTING.md](https://github.com/rapidsai/cucim/blob/main/CONTRIBUTING.md) file for information on how to contribute code and issues to the project.

## Acknowledgments

Without awesome third-party open source software, this project wouldn't exist.

Please find [LICENSE-3rdparty.md](LICENSE-3rdparty.md) to see which third-party open source software
is used in this project.

## License

Apache-2.0 License (see [LICENSE](LICENSE) file).

Copyright (c) 2020-2022, NVIDIA CORPORATION.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "cucim-cu11",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": null,
    "author": "NVIDIA Corporation",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/61/54/9f279bb9819f61561f186b58adc32e84f9fe7eb4cb84ab3163452b7389e8/cucim_cu11-24.8.0.tar.gz",
    "platform": null,
    "description": "# <div align=\"left\"><img src=\"https://rapids.ai/assets/images/rapids_logo.png\" width=\"90px\"/>&nbsp;cuCIM</div>\n\n[RAPIDS](https://rapids.ai) cuCIM is an open-source, accelerated computer vision and image processing software library for multidimensional images used in biomedical, geospatial, material and life science, and remote sensing use cases.\n\ncuCIM offers:\n\n- Enhanced Image Processing Capabilities for large and n-dimensional tag image file format (TIFF) files\n- Accelerated performance through Graphics Processing Unit (GPU)-based image processing and computer vision primitives\n- A Straightforward Pythonic Interface with Matching Application Programming Interface (API) for Openslide\n\ncuCIM supports the following formats:\n\n- Aperio ScanScope Virtual Slide (SVS)\n- Philips TIFF\n- Generic Tiled, Multi-resolution RGB TIFF files with the following compression schemes:\n  - No Compression\n  - JPEG\n  - JPEG2000\n  - Lempel-Ziv-Welch (LZW)\n  - Deflate\n\n**NOTE:** For the latest stable [README.md](https://github.com/rapidsai/cucim/blob/main/README.md) ensure you are on the `main` branch.\n\n- [GTC 2022 Accelerating Storage IO to GPUs with Magnum IO [S41347]](https://events.rainfocus.com/widget/nvidia/gtcspring2022/sessioncatalog/session/1634960000577001Etxp)\n  - cuCIM's GDS API examples: <https://github.com/NVIDIA/MagnumIO/tree/main/gds/readers/cucim-gds>\n- [SciPy 2021 cuCIM - A GPU image I/O and processing library](https://www.scipy2021.scipy.org/)\n  - [video](https://youtu.be/G46kOOM9xbQ)\n- [GTC 2021 cuCIM: A GPU Image I/O and Processing Toolkit [S32194]](https://www.nvidia.com/en-us/on-demand/search/?facet.mimetype[]=event%20session&layout=list&page=1&q=cucim&sort=date)\n  - [video](https://www.nvidia.com/en-us/on-demand/session/gtcspring21-s32194/)\n\n**[Developer Page](https://developer.nvidia.com/multidimensional-image-processing)**\n\n**Blogs**\n- [Enhanced Image Analysis with Multidimensional Image Processing](https://developer.nvidia.com/blog/enhanced-image-analysis-with-multidimensional-image-processing/)\n- [Accelerating Scikit-Image API with cuCIM: n-Dimensional Image Processing and IO on GPUs](https://developer.nvidia.com/blog/cucim-rapid-n-dimensional-image-processing-and-i-o-on-gpus/)\n- [Accelerating Digital Pathology Pipelines with NVIDIA Clara\u2122 Deploy](https://developer.nvidia.com/blog/accelerating-digital-pathology-pipelines-with-nvidia-clara-deploy-2/)\n\n**Webinars**\n\n- [cuCIM: a GPU Image IO and Processing Library](https://www.youtube.com/watch?v=G46kOOM9xbQ)\n\n**[Documentation](https://docs.rapids.ai/api/cucim/stable)**\n\n**Release notes** are available on our [wiki page](https://github.com/rapidsai/cucim/wiki/Release-Notes).\n\n## Install cuCIM\n\n### Conda\n\n#### [Conda (stable)](https://anaconda.org/rapidsai/cucim)\n\n```bash\nconda create -n cucim -c rapidsai -c conda-forge cucim cuda-version=`<CUDA version>`\n```\n\n`<CUDA version>` should be 11.2+ (e.g., `11.2`, `12.0`, etc.)\n\n#### [Conda (nightlies)](https://anaconda.org/rapidsai-nightly/cucim)\n\n```bash\nconda create -n cucim -c rapidsai-nightly -c conda-forge cucim cuda-version=`<CUDA version>`\n```\n\n`<CUDA version>` should be 11.2+ (e.g., `11.2`, `12.0`, etc.)\n\n### [PyPI](https://pypi.org/project/cucim/)\n\nInstall for CUDA 12:\n\n```bash\npip install cucim-cu12\n```\n\nAlternatively install for CUDA 11:\n\n```bash\npip install cucim-cu11\n```\n\n### Notebooks\n\nPlease check out our [Welcome](notebooks/Welcome.ipynb) notebook ([NBViewer](https://nbviewer.org/github/rapidsai/cucim/blob/main/notebooks/Welcome.ipynb))\n\n#### Downloading sample images\n\nTo download images used in the notebooks, please execute the following commands from the repository root folder to copy sample input images into `notebooks/input` folder:\n\n(You will need [Docker](https://www.docker.com/) installed in your system)\n\n```bash\n./run download_testdata\n```\nor\n\n```bash\nmkdir -p notebooks/input\ntmp_id=$(docker create gigony/svs-testdata:little-big)\ndocker cp $tmp_id:/input notebooks\ndocker rm -v ${tmp_id}\n```\n\n## Build/Install from Source\n\nSee build [instructions](CONTRIBUTING.md#setting-up-your-build-environment).\n\n## Contributing Guide\n\nContributions to cuCIM are more than welcome!\nPlease review the [CONTRIBUTING.md](https://github.com/rapidsai/cucim/blob/main/CONTRIBUTING.md) file for information on how to contribute code and issues to the project.\n\n## Acknowledgments\n\nWithout awesome third-party open source software, this project wouldn't exist.\n\nPlease find [LICENSE-3rdparty.md](LICENSE-3rdparty.md) to see which third-party open source software\nis used in this project.\n\n## License\n\nApache-2.0 License (see [LICENSE](LICENSE) file).\n\nCopyright (c) 2020-2022, NVIDIA CORPORATION.\n",
    "bugtrack_url": null,
    "license": "Apache 2.0",
    "summary": "cuCIM - an extensible toolkit designed to provide GPU accelerated I/O, computer vision & image processing primitives for N-Dimensional images with a focus on biomedical imaging.",
    "version": "24.8.0",
    "project_urls": {
        "Changelog": "https://github.com/rapidsai/cucim/blob/main/CHANGELOG.md",
        "Documentation": "https://docs.rapids.ai/api/cucim/stable/",
        "Homepage": "https://developer.nvidia.com/multidimensional-image-processing",
        "Source": "https://github.com/rapidsai/cucim",
        "Tracker": "https://github.com/rapidsai/cucim/issues"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f0a2b548324276135c7ce3db22b293953ac31f2cfcf1484b0f136fa235f5b3ec",
                "md5": "3b424336eb13d0cb8d76e112ac763ee2",
                "sha256": "546344872b2a832ca1c6b310b2e6a21c83022018b8eb048ded3af4cc5891c96f"
            },
            "downloads": -1,
            "filename": "cucim_cu11-24.8.0-cp310-cp310-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3b424336eb13d0cb8d76e112ac763ee2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 5488661,
            "upload_time": "2024-08-08T13:13:12",
            "upload_time_iso_8601": "2024-08-08T13:13:12.751083Z",
            "url": "https://files.pythonhosted.org/packages/f0/a2/b548324276135c7ce3db22b293953ac31f2cfcf1484b0f136fa235f5b3ec/cucim_cu11-24.8.0-cp310-cp310-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "72368b43896cbb6447d4dca1f097930bd5e6542ac53f0eee9e969cdfadf52369",
                "md5": "697c44b6b6beef4567faf8adfa9dda71",
                "sha256": "71b9ced37ec42d4240a45c57eef6ce3ded25b53ba1b602ea3c56e2890dbed17a"
            },
            "downloads": -1,
            "filename": "cucim_cu11-24.8.0-cp310-cp310-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "697c44b6b6beef4567faf8adfa9dda71",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 5694371,
            "upload_time": "2024-08-08T13:13:14",
            "upload_time_iso_8601": "2024-08-08T13:13:14.808880Z",
            "url": "https://files.pythonhosted.org/packages/72/36/8b43896cbb6447d4dca1f097930bd5e6542ac53f0eee9e969cdfadf52369/cucim_cu11-24.8.0-cp310-cp310-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "11bd509f374958912681e613ff554b8e2a3d2da3c8d2dc330c6a81f98b2b92f9",
                "md5": "d535d9229c37b44fa997354541717e44",
                "sha256": "a9ec1da484ab4397ccdc0e3e7e7393d47f1f6079fc4079e49a7f56c8d0a1f786"
            },
            "downloads": -1,
            "filename": "cucim_cu11-24.8.0-cp311-cp311-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d535d9229c37b44fa997354541717e44",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 5490199,
            "upload_time": "2024-08-08T13:13:17",
            "upload_time_iso_8601": "2024-08-08T13:13:17.309414Z",
            "url": "https://files.pythonhosted.org/packages/11/bd/509f374958912681e613ff554b8e2a3d2da3c8d2dc330c6a81f98b2b92f9/cucim_cu11-24.8.0-cp311-cp311-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c4544d742637ee7410e51f0155d27a9bcf35f6bc6189c47f4e8b173dcc4e04f2",
                "md5": "c3abf5ce257418705a13bd3c45a7b57e",
                "sha256": "005acce3edd21bed23775ea6ecaf035e6720ac8da7d6d25bef877d83dd0558bf"
            },
            "downloads": -1,
            "filename": "cucim_cu11-24.8.0-cp311-cp311-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c3abf5ce257418705a13bd3c45a7b57e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 5696081,
            "upload_time": "2024-08-08T13:13:19",
            "upload_time_iso_8601": "2024-08-08T13:13:19.837139Z",
            "url": "https://files.pythonhosted.org/packages/c4/54/4d742637ee7410e51f0155d27a9bcf35f6bc6189c47f4e8b173dcc4e04f2/cucim_cu11-24.8.0-cp311-cp311-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f470abf16f44e2ffc8b5e19954c2ee799c10de5bc23febec73f53c0a9f956982",
                "md5": "c8461c4c058b97bdbb6b661043f00063",
                "sha256": "e1d508560e533bc8ccf38b5f2527d414ee997be9d46656e3abdd38fbf5cbc313"
            },
            "downloads": -1,
            "filename": "cucim_cu11-24.8.0-cp39-cp39-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c8461c4c058b97bdbb6b661043f00063",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 5489185,
            "upload_time": "2024-08-08T13:13:21",
            "upload_time_iso_8601": "2024-08-08T13:13:21.559016Z",
            "url": "https://files.pythonhosted.org/packages/f4/70/abf16f44e2ffc8b5e19954c2ee799c10de5bc23febec73f53c0a9f956982/cucim_cu11-24.8.0-cp39-cp39-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c7486ffe274ceba0449c8997dd48eb526cfb7714bcbce9c1b2218eb8deafc36e",
                "md5": "d9f6382e1bbaf326e5016439d1a3e069",
                "sha256": "b4ed6fb5c8d277a3c3c6b2612322eb2b48de150a9d3754da4f864a6e4fff84d9"
            },
            "downloads": -1,
            "filename": "cucim_cu11-24.8.0-cp39-cp39-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d9f6382e1bbaf326e5016439d1a3e069",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 5694561,
            "upload_time": "2024-08-08T13:13:23",
            "upload_time_iso_8601": "2024-08-08T13:13:23.677133Z",
            "url": "https://files.pythonhosted.org/packages/c7/48/6ffe274ceba0449c8997dd48eb526cfb7714bcbce9c1b2218eb8deafc36e/cucim_cu11-24.8.0-cp39-cp39-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "61549f279bb9819f61561f186b58adc32e84f9fe7eb4cb84ab3163452b7389e8",
                "md5": "8e5a308f299cf53f11de8641ed7c9c55",
                "sha256": "3e790ee454f7984b188d2e68a369c86fe5f0a6e2ffa67ac851cbae8830c3ae3e"
            },
            "downloads": -1,
            "filename": "cucim_cu11-24.8.0.tar.gz",
            "has_sig": false,
            "md5_digest": "8e5a308f299cf53f11de8641ed7c9c55",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 3216,
            "upload_time": "2024-08-08T12:49:12",
            "upload_time_iso_8601": "2024-08-08T12:49:12.645823Z",
            "url": "https://files.pythonhosted.org/packages/61/54/9f279bb9819f61561f186b58adc32e84f9fe7eb4cb84ab3163452b7389e8/cucim_cu11-24.8.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-08-08 12:49:12",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "rapidsai",
    "github_project": "cucim",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "cucim-cu11"
}
        
Elapsed time: 0.48790s