napari-blob-detection


Namenapari-blob-detection JSON
Version 0.0.2 PyPI version JSON
download
home_pagehttps://github.com/andy-sweet/napari-blob-detection
SummaryDetects blobs in images
upload_time2022-04-22 21:55:46
maintainer
docs_urlNone
authorAndy Sweet, Chi-Li Chiu
requires_python>=3.8
licenseBSD-3-Clause
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # napari-blob-detection

[![License](https://img.shields.io/pypi/l/napari-blob-detection.svg?color=green)](https://github.com/andy-sweet/napari-blob-detection/raw/main/LICENSE)
[![PyPI](https://img.shields.io/pypi/v/napari-blob-detection.svg?color=green)](https://pypi.org/project/napari-blob-detection)
[![Python Version](https://img.shields.io/pypi/pyversions/napari-blob-detection.svg?color=green)](https://python.org)
[![tests](https://github.com/andy-sweet/napari-blob-detection/workflows/tests/badge.svg)](https://github.com/andy-sweet/napari-blob-detection/actions)
[![codecov](https://codecov.io/gh/andy-sweet/napari-blob-detection/branch/main/graph/badge.svg)](https://codecov.io/gh/andy-sweet/napari-blob-detection)
[![napari hub](https://img.shields.io/endpoint?url=https://api.napari-hub.org/shields/napari-blob-detection)](https://napari-hub.org/plugins/napari-blob-detection)

Detects blobs in images

----------------------------------

This [napari] plugin was generated with [Cookiecutter] using [@napari]'s [cookiecutter-napari-plugin] template.

<!--
Don't miss the full getting started guide to set up your new package:
https://github.com/napari/cookiecutter-napari-plugin#getting-started

and review the napari docs for plugin developers:
https://napari.org/plugins/stable/index.html
-->

This plugin consists of two widgets:

1. Detects blobs on images
2. Convert points layer to labels layer

----------------------------------

### Detects blobs on images

This widget uses [scikit-image's blob detection algorithms](https://scikit-image.org/docs/stable/auto_examples/features_detection/plot_blob.html) to detect bright blobs on dark backgrounds.

Parameters

- method: Laplacian of Gaussian (most accurate) or Difference of Gaussian (faster approximation) 
- image: Image layer for blob detection. Can be a 2D, 3D, or higher dimensionality image.
- dimensionality: users can specify if the image is 2D(+t) or 3D(+t).
- min sigma: the smallest blob size to detect
- max sigma: the largest blob size to detect
- threshold: the lower the threshold, the more low intensity blobs are detected. 

Output

Blobs are represented by the Points layer.
The size of each blob is proportional to `Points.feature['sigma']`,
which signifies the scale at which the feature point was found.

### Convert points layer to labels layer

This widget takes a points layer and converts it into a labels layer, with the image dimension matching the selected image layer.
By converting points to labels, users can leverage feature extraction functions that are available to labels to the detected points.

----------------------------------

## Installation

You can install `napari-blob-detection` via [pip]:

    pip install napari-blob-detection



To install latest development version :

    pip install git+https://github.com/andy-sweet/napari-blob-detection.git


## Contributing

Contributions are very welcome. Tests can be run with [tox], please ensure
the coverage at least stays the same before you submit a pull request.

## License

Distributed under the terms of the [BSD-3] license,
"napari-blob-detection" is free and open source software

## Issues

If you encounter any problems, please [file an issue] along with a detailed description.

[napari]: https://github.com/napari/napari
[Cookiecutter]: https://github.com/audreyr/cookiecutter
[@napari]: https://github.com/napari
[MIT]: http://opensource.org/licenses/MIT
[BSD-3]: http://opensource.org/licenses/BSD-3-Clause
[GNU GPL v3.0]: http://www.gnu.org/licenses/gpl-3.0.txt
[GNU LGPL v3.0]: http://www.gnu.org/licenses/lgpl-3.0.txt
[Apache Software License 2.0]: http://www.apache.org/licenses/LICENSE-2.0
[Mozilla Public License 2.0]: https://www.mozilla.org/media/MPL/2.0/index.txt
[cookiecutter-napari-plugin]: https://github.com/napari/cookiecutter-napari-plugin

[file an issue]: https://github.com/andy-sweet/napari-blob-detection/issues

[napari]: https://github.com/napari/napari
[tox]: https://tox.readthedocs.io/en/latest/
[pip]: https://pypi.org/project/pip/
[PyPI]: https://pypi.org/



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/andy-sweet/napari-blob-detection",
    "name": "napari-blob-detection",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "",
    "author": "Andy Sweet, Chi-Li Chiu",
    "author_email": "andrewdsweet@gmail.com, cchiu@chanzuckerberg.com",
    "download_url": "https://files.pythonhosted.org/packages/33/80/5a7695be0a4afd3cc1c0a4803afd94f8ec35a8a2dda85a4ba214f16315ea/napari-blob-detection-0.0.2.tar.gz",
    "platform": null,
    "description": "# napari-blob-detection\n\n[![License](https://img.shields.io/pypi/l/napari-blob-detection.svg?color=green)](https://github.com/andy-sweet/napari-blob-detection/raw/main/LICENSE)\n[![PyPI](https://img.shields.io/pypi/v/napari-blob-detection.svg?color=green)](https://pypi.org/project/napari-blob-detection)\n[![Python Version](https://img.shields.io/pypi/pyversions/napari-blob-detection.svg?color=green)](https://python.org)\n[![tests](https://github.com/andy-sweet/napari-blob-detection/workflows/tests/badge.svg)](https://github.com/andy-sweet/napari-blob-detection/actions)\n[![codecov](https://codecov.io/gh/andy-sweet/napari-blob-detection/branch/main/graph/badge.svg)](https://codecov.io/gh/andy-sweet/napari-blob-detection)\n[![napari hub](https://img.shields.io/endpoint?url=https://api.napari-hub.org/shields/napari-blob-detection)](https://napari-hub.org/plugins/napari-blob-detection)\n\nDetects blobs in images\n\n----------------------------------\n\nThis [napari] plugin was generated with [Cookiecutter] using [@napari]'s [cookiecutter-napari-plugin] template.\n\n<!--\nDon't miss the full getting started guide to set up your new package:\nhttps://github.com/napari/cookiecutter-napari-plugin#getting-started\n\nand review the napari docs for plugin developers:\nhttps://napari.org/plugins/stable/index.html\n-->\n\nThis plugin consists of two widgets:\n\n1. Detects blobs on images\n2. Convert points layer to labels layer\n\n----------------------------------\n\n### Detects blobs on images\n\nThis widget uses [scikit-image's blob detection algorithms](https://scikit-image.org/docs/stable/auto_examples/features_detection/plot_blob.html) to detect bright blobs on dark backgrounds.\n\nParameters\n\n- method: Laplacian of Gaussian (most accurate) or Difference of Gaussian (faster approximation) \n- image: Image layer for blob detection. Can be a 2D, 3D, or higher dimensionality image.\n- dimensionality: users can specify if the image is 2D(+t) or 3D(+t).\n- min sigma: the smallest blob size to detect\n- max sigma: the largest blob size to detect\n- threshold: the lower the threshold, the more low intensity blobs are detected. \n\nOutput\n\nBlobs are represented by the Points layer.\nThe size of each blob is proportional to `Points.feature['sigma']`,\nwhich signifies the scale at which the feature point was found.\n\n### Convert points layer to labels layer\n\nThis widget takes a points layer and converts it into a labels layer, with the image dimension matching the selected image layer.\nBy converting points to labels, users can leverage feature extraction functions that are available to labels to the detected points.\n\n----------------------------------\n\n## Installation\n\nYou can install `napari-blob-detection` via [pip]:\n\n    pip install napari-blob-detection\n\n\n\nTo install latest development version :\n\n    pip install git+https://github.com/andy-sweet/napari-blob-detection.git\n\n\n## Contributing\n\nContributions are very welcome. Tests can be run with [tox], please ensure\nthe coverage at least stays the same before you submit a pull request.\n\n## License\n\nDistributed under the terms of the [BSD-3] license,\n\"napari-blob-detection\" is free and open source software\n\n## Issues\n\nIf you encounter any problems, please [file an issue] along with a detailed description.\n\n[napari]: https://github.com/napari/napari\n[Cookiecutter]: https://github.com/audreyr/cookiecutter\n[@napari]: https://github.com/napari\n[MIT]: http://opensource.org/licenses/MIT\n[BSD-3]: http://opensource.org/licenses/BSD-3-Clause\n[GNU GPL v3.0]: http://www.gnu.org/licenses/gpl-3.0.txt\n[GNU LGPL v3.0]: http://www.gnu.org/licenses/lgpl-3.0.txt\n[Apache Software License 2.0]: http://www.apache.org/licenses/LICENSE-2.0\n[Mozilla Public License 2.0]: https://www.mozilla.org/media/MPL/2.0/index.txt\n[cookiecutter-napari-plugin]: https://github.com/napari/cookiecutter-napari-plugin\n\n[file an issue]: https://github.com/andy-sweet/napari-blob-detection/issues\n\n[napari]: https://github.com/napari/napari\n[tox]: https://tox.readthedocs.io/en/latest/\n[pip]: https://pypi.org/project/pip/\n[PyPI]: https://pypi.org/\n\n\n",
    "bugtrack_url": null,
    "license": "BSD-3-Clause",
    "summary": "Detects blobs in images",
    "version": "0.0.2",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "2e9526cfe7e3814d8f1e972a7a87de6e",
                "sha256": "ea27c0401d4602e1044944c42561ff59e32c9c57123316a22531fe9e73396c63"
            },
            "downloads": -1,
            "filename": "napari_blob_detection-0.0.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "2e9526cfe7e3814d8f1e972a7a87de6e",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 9750,
            "upload_time": "2022-04-22T21:55:45",
            "upload_time_iso_8601": "2022-04-22T21:55:45.936883Z",
            "url": "https://files.pythonhosted.org/packages/2a/79/085a2637e551a1d9817103296d5b67d8093767371d39d244e3858186e900/napari_blob_detection-0.0.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "4707b6a4f574f5bc94b3470cdc11d588",
                "sha256": "a036c6f05e852ca0d332358249ec6c442c1ebdb83781e0609d9b146990e6f938"
            },
            "downloads": -1,
            "filename": "napari-blob-detection-0.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "4707b6a4f574f5bc94b3470cdc11d588",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 9104,
            "upload_time": "2022-04-22T21:55:46",
            "upload_time_iso_8601": "2022-04-22T21:55:46.903899Z",
            "url": "https://files.pythonhosted.org/packages/33/80/5a7695be0a4afd3cc1c0a4803afd94f8ec35a8a2dda85a4ba214f16315ea/napari-blob-detection-0.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-04-22 21:55:46",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "andy-sweet",
    "github_project": "napari-blob-detection",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "napari-blob-detection"
}
        
Elapsed time: 7.03594s