itk-dissolve


Nameitk-dissolve JSON
Version 1.0.6 PyPI version JSON
download
home_pagehttps://github.com/dyollb/ITKDissolve
SummaryThis is a module for the Insight Toolkit (ITK) that provides filters to replace regions within a masked region with the surrounding labels.
upload_time2022-12-22 08:53:07
maintainer
docs_urlNone
authorBryn Lloyd
requires_python
licenseMIT
keywords itk insighttoolkit
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # ITKDissolve

[![Build Status](https://github.com/dyollb/ITKDissolve/workflows/Build,%20test,%20package/badge.svg)](https://github.com/dyollb/ITKDissolve/actions)
[![License]( https://img.shields.io/github/license/dyollb/ITKDissolve?color=blue)](https://github.com/dyollb/ITKDissolve/blob/main/LICENSE)
[![PyPI version](https://img.shields.io/pypi/v/itk-dissolve.svg)](https://badge.fury.io/py/itk-dissolve)
<img src="https://img.shields.io/pypi/dm/itk-dissolve.svg?label=pypi%20downloads&logo=python&logoColor=green"/>
<img src="https://img.shields.io/badge/python-%203.7%20|%203.8%20|%203.9%20|%203.10%20|%203.11%20-3776ab.svg"/>
## Overview

This is a module for the Insight Toolkit ([ITK](https://github.com/InsightSoftwareConsortium/ITK)) that provides functionality to discard pixels within a masked region. Unlike masking, the pixels in the masked region are replaced (dissolved) by their nearest pixels outside the mask. This can be useful to clean-up label fields, e.g. to remove small islands/holes or remove entire labels, and replace them by the adjacent labels.

The module includes a filter called DissolveMaskImageFilter.

```python
    import itk
    labels = itk.imread('path/to/labels.mha').astype(itk.US)
    mask = itk.imread('path/to/mask.mha').astype(itk.UC)

    ImageType = type(labels)
    MaskType = type(mask)

    dissolve = itk.DissolveMaskImageFilter[ImageType, MaskType].New()
    dissolve.SetInput(labels)
    dissolve.SetMaskImage(mask)
    dissolve.Update()
    modified_labels = dissolve.GetOutput()

    itk.imwrite(modified_labels, 'modified_labels2.mha')
```

Or using the pythonic API:

```python
    import itk
    labels = itk.imread('path/to/labels.mha').astype(itk.US)
    mask = itk.imread('path/to/mask.mha').astype(itk.US)
    modified_labels = itk.dissolve_mask_image_filter(labels, mask_image=mask)
    itk.imwrite(modified_labels, 'path/to/modified_labels.mha')
```

## Installation

To install the binary Python packages:

```shell
  python -m pip install itk-dissolve
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/dyollb/ITKDissolve",
    "name": "itk-dissolve",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "ITK InsightToolkit",
    "author": "Bryn Lloyd",
    "author_email": "lloyd@itis.swiss",
    "download_url": "https://github.com/dyollb/ITKDissolve",
    "platform": null,
    "description": "# ITKDissolve\n\n[![Build Status](https://github.com/dyollb/ITKDissolve/workflows/Build,%20test,%20package/badge.svg)](https://github.com/dyollb/ITKDissolve/actions)\n[![License]( https://img.shields.io/github/license/dyollb/ITKDissolve?color=blue)](https://github.com/dyollb/ITKDissolve/blob/main/LICENSE)\n[![PyPI version](https://img.shields.io/pypi/v/itk-dissolve.svg)](https://badge.fury.io/py/itk-dissolve)\n<img src=\"https://img.shields.io/pypi/dm/itk-dissolve.svg?label=pypi%20downloads&logo=python&logoColor=green\"/>\n<img src=\"https://img.shields.io/badge/python-%203.7%20|%203.8%20|%203.9%20|%203.10%20|%203.11%20-3776ab.svg\"/>\n## Overview\n\nThis is a module for the Insight Toolkit ([ITK](https://github.com/InsightSoftwareConsortium/ITK)) that provides functionality to discard pixels within a masked region. Unlike masking, the pixels in the masked region are replaced (dissolved) by their nearest pixels outside the mask. This can be useful to clean-up label fields, e.g. to remove small islands/holes or remove entire labels, and replace them by the adjacent labels.\n\nThe module includes a filter called DissolveMaskImageFilter.\n\n```python\n    import itk\n    labels = itk.imread('path/to/labels.mha').astype(itk.US)\n    mask = itk.imread('path/to/mask.mha').astype(itk.UC)\n\n    ImageType = type(labels)\n    MaskType = type(mask)\n\n    dissolve = itk.DissolveMaskImageFilter[ImageType, MaskType].New()\n    dissolve.SetInput(labels)\n    dissolve.SetMaskImage(mask)\n    dissolve.Update()\n    modified_labels = dissolve.GetOutput()\n\n    itk.imwrite(modified_labels, 'modified_labels2.mha')\n```\n\nOr using the pythonic API:\n\n```python\n    import itk\n    labels = itk.imread('path/to/labels.mha').astype(itk.US)\n    mask = itk.imread('path/to/mask.mha').astype(itk.US)\n    modified_labels = itk.dissolve_mask_image_filter(labels, mask_image=mask)\n    itk.imwrite(modified_labels, 'path/to/modified_labels.mha')\n```\n\n## Installation\n\nTo install the binary Python packages:\n\n```shell\n  python -m pip install itk-dissolve\n```\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "This is a module for the Insight Toolkit (ITK) that provides filters to replace regions within a masked region with the surrounding labels.",
    "version": "1.0.6",
    "split_keywords": [
        "itk",
        "insighttoolkit"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "84f1271c0c0fe1c254ce71d2719e38c9",
                "sha256": "879479cbbe60854741719d4a7f36afa6e296786fea1c78cb3902c23fe43582a3"
            },
            "downloads": -1,
            "filename": "itk_dissolve-1.0.6-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "84f1271c0c0fe1c254ce71d2719e38c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1312560,
            "upload_time": "2022-12-22T08:53:07",
            "upload_time_iso_8601": "2022-12-22T08:53:07.308409Z",
            "url": "https://files.pythonhosted.org/packages/ef/38/0d4ac6038745e039713e64b91b27a407a77cd3868332262e630328b4970d/itk_dissolve-1.0.6-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "63fdd3d3c3f0cc75920997862f34231f",
                "sha256": "a21b4d0c13c6c1d9fa37d97fdadb2a42158a320715cfbc7a0a27b2125cdabaa0"
            },
            "downloads": -1,
            "filename": "itk_dissolve-1.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "63fdd3d3c3f0cc75920997862f34231f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1286925,
            "upload_time": "2022-12-22T08:53:09",
            "upload_time_iso_8601": "2022-12-22T08:53:09.091492Z",
            "url": "https://files.pythonhosted.org/packages/d7/46/3e09cf9ab37b85327da16941ffac2f1080e7b9fb2e3f140bf0a8256a6240/itk_dissolve-1.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "1c03e46fc1e2150d0c621e76d02069c1",
                "sha256": "63a8b80feaa3bf9e72de6ffe7ffd4f437f9c0b492e140be55d2b873dc6821235"
            },
            "downloads": -1,
            "filename": "itk_dissolve-1.0.6-cp310-cp310-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1c03e46fc1e2150d0c621e76d02069c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1230705,
            "upload_time": "2022-12-22T08:53:10",
            "upload_time_iso_8601": "2022-12-22T08:53:10.621210Z",
            "url": "https://files.pythonhosted.org/packages/fc/a5/b2ba6b011ce116ba4dca4b176da7ff612bda7f485e33ac233e6fdede2b11/itk_dissolve-1.0.6-cp310-cp310-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "ddf47152a77938ee9de206a10d941874",
                "sha256": "e205dc76d62dab6586304c83982f6591fc5c5c1727f032eb0abdb663b429b656"
            },
            "downloads": -1,
            "filename": "itk_dissolve-1.0.6-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ddf47152a77938ee9de206a10d941874",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 542413,
            "upload_time": "2022-12-22T08:53:12",
            "upload_time_iso_8601": "2022-12-22T08:53:12.104181Z",
            "url": "https://files.pythonhosted.org/packages/c1/5d/97f380552b8648e1abb638a810e13eb24bfe09c4c886428531c92f7f7492/itk_dissolve-1.0.6-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "7801b3e889d2de98bbc3369284e4e14e",
                "sha256": "a980e363ea7087acd9d2ff9287be76266b1524fe63b60afd8d732334405d7743"
            },
            "downloads": -1,
            "filename": "itk_dissolve-1.0.6-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7801b3e889d2de98bbc3369284e4e14e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1312556,
            "upload_time": "2022-12-22T08:53:13",
            "upload_time_iso_8601": "2022-12-22T08:53:13.564335Z",
            "url": "https://files.pythonhosted.org/packages/b2/f4/bb46392b8573f465becb649f2853bf91e64c32ce2bea601ebf6537000a6f/itk_dissolve-1.0.6-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "9a1085434df4d1e580996cd627a8fc22",
                "sha256": "144e209d66638bb3f4e749aaf0ebf407c72586942a54a0f63c170204a9fba269"
            },
            "downloads": -1,
            "filename": "itk_dissolve-1.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9a1085434df4d1e580996cd627a8fc22",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1286938,
            "upload_time": "2022-12-22T08:53:15",
            "upload_time_iso_8601": "2022-12-22T08:53:15.073283Z",
            "url": "https://files.pythonhosted.org/packages/89/db/a3f2af80a0a3ab204012b88cf9b434ca10e534943e4f23f454c060c8b314/itk_dissolve-1.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "37bd5ee75c84b471dea6df8421a14755",
                "sha256": "d3d20168ad4ca427c05f1b73bc4ffa702e56e54605128ec3b9c6222715a2936b"
            },
            "downloads": -1,
            "filename": "itk_dissolve-1.0.6-cp311-cp311-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "37bd5ee75c84b471dea6df8421a14755",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1230799,
            "upload_time": "2022-12-22T08:53:16",
            "upload_time_iso_8601": "2022-12-22T08:53:16.476911Z",
            "url": "https://files.pythonhosted.org/packages/d9/8d/2a417f691637b2babf30ad70e7e911dfa667372729928af6d57e5d4623f4/itk_dissolve-1.0.6-cp311-cp311-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "9698fd5598b2f725ccadd695219dd4f3",
                "sha256": "cb3dfeab2d0bbd9da638f7e15169d0079186d3aae6152c9c462090992fde9d4d"
            },
            "downloads": -1,
            "filename": "itk_dissolve-1.0.6-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9698fd5598b2f725ccadd695219dd4f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 542421,
            "upload_time": "2022-12-22T08:53:17",
            "upload_time_iso_8601": "2022-12-22T08:53:17.861504Z",
            "url": "https://files.pythonhosted.org/packages/f4/4c/3add1eb93336003647db810c1d662c686208f8c3d09ac7c925ef5a8e7bb5/itk_dissolve-1.0.6-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "13c2f1abbf908e745b5b2d4ddc2fd287",
                "sha256": "74d0d1c256b0368c682489dc1a9eef804e21c45bd1dee6400fa5c6abc4c6f226"
            },
            "downloads": -1,
            "filename": "itk_dissolve-1.0.6-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "13c2f1abbf908e745b5b2d4ddc2fd287",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1312575,
            "upload_time": "2022-12-22T08:53:19",
            "upload_time_iso_8601": "2022-12-22T08:53:19.065588Z",
            "url": "https://files.pythonhosted.org/packages/d0/89/3dba7ef30c39a974082bbb1312c81854f096a7836d92b0ceae3a811045d1/itk_dissolve-1.0.6-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "54590f9e62bb75d4d3c439addc29d4cc",
                "sha256": "2e2ccc1cc9d56e100e8a33d7b1750796327f1af33a3a0bfcf84620d206ba9b47"
            },
            "downloads": -1,
            "filename": "itk_dissolve-1.0.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "54590f9e62bb75d4d3c439addc29d4cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1283489,
            "upload_time": "2022-12-22T08:53:20",
            "upload_time_iso_8601": "2022-12-22T08:53:20.501289Z",
            "url": "https://files.pythonhosted.org/packages/0f/83/7b81f142bf5c1b8de37baa0e427f1d60a98aece68bd47636739bac8cdeb9/itk_dissolve-1.0.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "ae9b7f39740c5606eb4e23f04ab0458d",
                "sha256": "d82c959e0bf2554fb31ab05323ef00b99231dde681ee6eec4785c51753750d37"
            },
            "downloads": -1,
            "filename": "itk_dissolve-1.0.6-cp37-cp37m-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ae9b7f39740c5606eb4e23f04ab0458d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1228935,
            "upload_time": "2022-12-22T08:53:21",
            "upload_time_iso_8601": "2022-12-22T08:53:21.934062Z",
            "url": "https://files.pythonhosted.org/packages/7c/6f/f25a57206175a08891feab9f2561314d472f39904043a48fc3a7a8b5c66b/itk_dissolve-1.0.6-cp37-cp37m-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "0412cd2e56c9c7a05a0b2d54ff983523",
                "sha256": "a1dc920704c351bc78052faf6531e04608aad0f6003fd30aa7750881d04c456c"
            },
            "downloads": -1,
            "filename": "itk_dissolve-1.0.6-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0412cd2e56c9c7a05a0b2d54ff983523",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 567461,
            "upload_time": "2022-12-22T08:53:23",
            "upload_time_iso_8601": "2022-12-22T08:53:23.407429Z",
            "url": "https://files.pythonhosted.org/packages/d1/65/6605429b64edf27b4df2280ec34f5a2b2f95b2281b42bc4d8fc4ff6c33fd/itk_dissolve-1.0.6-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "27364aeefe70c5bf1d1a66fd03d3bafb",
                "sha256": "1e7fa8415ab09332aabab84513cfa86a94b9336a1e9ddc38440e9cce5a1ee0bd"
            },
            "downloads": -1,
            "filename": "itk_dissolve-1.0.6-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "27364aeefe70c5bf1d1a66fd03d3bafb",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1312975,
            "upload_time": "2022-12-22T08:53:24",
            "upload_time_iso_8601": "2022-12-22T08:53:24.782669Z",
            "url": "https://files.pythonhosted.org/packages/52/85/5af20eb134ae693bff2db6ba558547a2902bf306fbd4c56d91ff80e90a28/itk_dissolve-1.0.6-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "0154b9709328d8ff9885681a3dd052c4",
                "sha256": "54228cee91043d6605ee5f33567197e02b2895ac7489cdd594b83fa256a59ab6"
            },
            "downloads": -1,
            "filename": "itk_dissolve-1.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0154b9709328d8ff9885681a3dd052c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1284622,
            "upload_time": "2022-12-22T08:53:25",
            "upload_time_iso_8601": "2022-12-22T08:53:25.928970Z",
            "url": "https://files.pythonhosted.org/packages/41/2f/a5850675896d86b07ee443443fb0894d6ae09fd3872d5ba9fad37524f1d1/itk_dissolve-1.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "59f84d275c7d5bc492522782c676a61e",
                "sha256": "1e64bc7964261bd7c9c0bd364ae483993775e344319eb5758e990455d83152db"
            },
            "downloads": -1,
            "filename": "itk_dissolve-1.0.6-cp38-cp38-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "59f84d275c7d5bc492522782c676a61e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1230717,
            "upload_time": "2022-12-22T08:53:27",
            "upload_time_iso_8601": "2022-12-22T08:53:27.014147Z",
            "url": "https://files.pythonhosted.org/packages/26/b5/d9a2608343d19cf6ed6c62df54dfec3b4a1c16ed4b54dcc99d77061eb807/itk_dissolve-1.0.6-cp38-cp38-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "d695088a8b0835a819e0a2bd9b317921",
                "sha256": "71e006aa54118e5b7c5f82344af5eb25b7153a1f8e51b282c1562d571799c59a"
            },
            "downloads": -1,
            "filename": "itk_dissolve-1.0.6-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d695088a8b0835a819e0a2bd9b317921",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 569922,
            "upload_time": "2022-12-22T08:53:28",
            "upload_time_iso_8601": "2022-12-22T08:53:28.395881Z",
            "url": "https://files.pythonhosted.org/packages/c3/79/4b7700fe6816de7f4bb63d2cad6f218bb39ac9a33c514db0b82dcf62d9a8/itk_dissolve-1.0.6-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "d6236e188c93e5eee45f12a430fc63e2",
                "sha256": "0360ba3474c8e9650c9ac5b02a55f27b64f8890c421f2cbd43973cdc0c3b31eb"
            },
            "downloads": -1,
            "filename": "itk_dissolve-1.0.6-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d6236e188c93e5eee45f12a430fc63e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1312591,
            "upload_time": "2022-12-22T08:53:29",
            "upload_time_iso_8601": "2022-12-22T08:53:29.867796Z",
            "url": "https://files.pythonhosted.org/packages/7f/28/208d73f07437a5997fa0b6fa1c0d0ffd96c21f88be1340519629819c9a16/itk_dissolve-1.0.6-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "9e77747bc6b366a778051848fb9ec72d",
                "sha256": "a6d592164a51abde28bed707abc0c0ec4fd827fd618b54415bfb4834b9bfc4fa"
            },
            "downloads": -1,
            "filename": "itk_dissolve-1.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9e77747bc6b366a778051848fb9ec72d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1286740,
            "upload_time": "2022-12-22T08:53:31",
            "upload_time_iso_8601": "2022-12-22T08:53:31.771013Z",
            "url": "https://files.pythonhosted.org/packages/8b/e9/1cca369e9392ece4b28ec94850bee4860b0a919cfd95f6586246c6efb17a/itk_dissolve-1.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "9b8a4d2efeccbdbb24401fe962b3e2c8",
                "sha256": "9a44e1f8a6487add03d0d6b480c2650d7b1ee4b5a5add763b1a4824163550234"
            },
            "downloads": -1,
            "filename": "itk_dissolve-1.0.6-cp39-cp39-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9b8a4d2efeccbdbb24401fe962b3e2c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1230249,
            "upload_time": "2022-12-22T08:53:33",
            "upload_time_iso_8601": "2022-12-22T08:53:33.291520Z",
            "url": "https://files.pythonhosted.org/packages/46/73/2e9b649150548caff90326ba3c7c08d3e413b891c102d918da236a01a9c1/itk_dissolve-1.0.6-cp39-cp39-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "4dd840241a9fdd66a527fc5ba4d6dd66",
                "sha256": "b75e98f57ce1e3990b3bba5dde608a5034a0d5b6957077ae9fcab2559a299429"
            },
            "downloads": -1,
            "filename": "itk_dissolve-1.0.6-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4dd840241a9fdd66a527fc5ba4d6dd66",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 542970,
            "upload_time": "2022-12-22T08:53:34",
            "upload_time_iso_8601": "2022-12-22T08:53:34.431729Z",
            "url": "https://files.pythonhosted.org/packages/85/f4/30e1569e12f08eb7ff36de89bb015a24c4d982bab67ad763272e8cd756be/itk_dissolve-1.0.6-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-12-22 08:53:07",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "dyollb",
    "github_project": "ITKDissolve",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "itk-dissolve"
}
        
Elapsed time: 0.02178s