napari-clemreg


Namenapari-clemreg JSON
Version 0.2.1 PyPI version JSON
download
home_pagehttps://github.com/krentzd/napari-clemreg
SummaryA plugin for registering multimodal image volumes based on common segmented structures of interest with point-clouds.
upload_time2024-12-26 10:22:12
maintainerNone
docs_urlNone
authorDaniel Krentzel
requires_python>=3.7
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # napari-clemreg
### An automated point cloud based registration algorithm for correlative light and volume electron microscopy

[![License](https://img.shields.io/pypi/l/napari-clemreg.svg?color=green)](https://github.com/krentzd/napari-clemreg/raw/master/LICENSE)
[![PyPI](https://img.shields.io/pypi/v/napari-clemreg.svg?color=green)](https://pypi.org/project/napari-clemreg)
[![Python Version](https://img.shields.io/pypi/pyversions/napari-clemreg.svg?color=green)](https://python.org)

[//]: # ([![codecov](https://codecov.io/gh/krentzd/napari-clemreg/branch/master/graph/badge.svg)](https://codecov.io/gh/krentzd/napari-clemreg))
[//]: # ([![tests](https://github.com/krentzd/napari-clemreg/workflows/tests/badge.svg)](https://github.com/krentzd/napari-clemreg/actions))

## Installation
### Local Installation

To install `napari-clemreg` it is recommended to create a fresh [conda] environment with Python 3.9:

```
conda create -n clemreg_env python=3.9
```
Next, install `napari` with the following command via [pip]: 

```
pip install "napari[all]"
```

Finally, `napari-clemreg` can be installed with:
```
pip install napari-clemreg
```
When installing `napari-clemreg` on a Windows machine, the following error might appear:
```
error Microsoft Visual C++ 14.0 is required
```
Ensure that [Visual Studios C++ 14.00](https://visualstudio.microsoft.com/thank-you-downloading-visual-studio/?sku=BuildTools&rel=16) is installed

### Docker Container
If you would like to run `napari-clemreg` in a docker container instead of installing it as above, please follow the instructions in our [Docker guide](docker_guide.md)

## Usage
CLEM-reg is the combination of 5 main steps, MitoNet segmentation, LoG segmentation,
point cloud sampling, point cloud registration and lastly image warping. These 5 steps 
can be run all at once using the run registration widget shown below with the tick next to it.
Alternatively, they can be run individually with the numbered widgets.

![clemreg_widget_options.png](docs%2Fimages%2Fclemreg_widget_options.png)

### Run Registration



![registration_labels.png](docs%2Fimages%2FCLEMreg-fig.png)

1. **Moving Image** - Here you select your light microscopy (LM) data which will
be warped to align with the fixed electron microscopy (EM) image.
2. **Fixed Image** - Here you select your EM data which will
act as the reference point for the LM to be aligned to.
3. **Registration Algorithm** - Here you can decide which type of registration algorith
will be used for the registration of inputted LM and EM. In terms of speed of each algorithm
the following is the generally true, Rigid CPD > Affine CPD > BCPD.
4. **MitoNet Segmentation Parameters** - Here are the advanced options for the segmentation
of the mitochondria in the EM data.
   1. Prediction Across Three Axis - By selecting this option MitoNet will run segmentation
across all three axis of the EM volume and then these three predictions will be aggregate.
5. **LoG Segmentation Parameters** - Here are the advanced options for the segmentation of 
the mitochondria in the LM data.
   1. Sigma - Sigma value for the Laplacian of Gaussian filter.
   2. Threshold - Threshold value for the segmenting the LM data.
6. **Point Cloud Sampling** - Here are the advanced options for the point cloud sampling of the 
segmentations of the LM and EM data.
   1. Sampling Frequency - Frequency of point sampling from the fixed and moving segmentation. The greater the value the more points in the point cloud.
   2. Sigma - Sigma value for the canny edge filter.
7. **Point Cloud Registration** - Here are the advanced options for the registration of the point clouds
of both the LM and EM data.
   1. Voxel Size - The size voxel size of each point. Smaller the size the less memory consumption.
   2. Subsampling - Downsampling of the point clouds to reduce memory consumption. Greater the number the fewer points in the point cloud.
   3. Maximum Iterations - The number of round of point cloud registration. If too small it won't converge on an opitmal registration.
8. **Image Warping** - Here are the advanced options for the image warping of the moving LM images.
   1. Interpolation Order - The order of the spline interpolation.
   2. Aproximate Grid - Controls the "resolution" of the grid onto which you're warping. A higher value reduces the step size between coordinates.
   3. Sub-division Factor - Controls the size of the chunk when applying the warping.
9. **Save Parameters** - Here you can select the option to save the advanced options you've selected
to a JSON file which can be kept for reproducibility as well as running the registration again.
10. **Visualise Intermediate Results** - Here you can select to view the outputs of each step as they
are completed.

### Split Registration
As well as being able to run all the steps of CLEM-reg in one widget (the `Run registration` widget),
you are also able to do all these steps independently using the `Split Registration` functionality. 

There are four separate widgets that encapsulate the 5 steps of CLEM-reg each of which have
their own unique input and output:
1. `MitoNet Segmentation` 
   - **Input**: EM Image
   - **Output**: EM Segmentation
2. `LoG Segmentation`
   - **Input**: LM Image
   - **Output**: LM Segmentation
3. `Point Cloud Sampling`
   - **Input**: LM Segmentation & EM Segmentation
   - **Output**: LM Point Cloud & LM Point Cloud
4. `Point Cloud Registration & Image Warping`
   - **Input**: EM Image, LM Image, LM Point Cloud & EM Point Cloud
   - **Output**: Registered LM Image, Registered LM Point Cloud

### Registering Multiple LM Channels
One can register multiple LM channels at once by doing the following.

1. Start by splitting the LM channels into the separate layers by right-clicking on
the layer and then selecting `Split Stack`.
![merged-channel-split-options.png](docs%2Fimages%2Fmerged-channel-split-options.png)
This will result in each of the channels having their own individual layer. 

2. Once this is done we must link all the LM layers together, this is done 
by selecting all the layers which will highlight them in blue, once again right-clicking
on the layer and then selecting `Link Layers.`
![split-channels-link-layers.png](docs%2Fimages%2Fsplit-channels-link-layers.png)

3. When you finally go to run CLEM-reg ensure that for the `Moving Image`
you select the LM layer that contains mitochondria.

## 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 [MIT] license,
"napari-clemreg" 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/krentzd/napari-clemreg/issues
[napari]: https://github.com/napari/napari
[tox]: https://tox.readthedocs.io/en/latest/
[pip]: https://pypi.org/project/pip/
[PyPI]: https://pypi.org/
[conda]: https://docs.conda.io/en/latest/

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

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/krentzd/napari-clemreg",
    "name": "napari-clemreg",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": null,
    "author": "Daniel Krentzel",
    "author_email": "dkrentzel@pm.me",
    "download_url": "https://files.pythonhosted.org/packages/42/fb/c540b36a03b20cf858d2e066eb65edb41a8e3869f61c29f4a58e272d2542/napari_clemreg-0.2.1.tar.gz",
    "platform": null,
    "description": "# napari-clemreg\n### An automated point cloud based registration algorithm for correlative light and volume electron microscopy\n\n[![License](https://img.shields.io/pypi/l/napari-clemreg.svg?color=green)](https://github.com/krentzd/napari-clemreg/raw/master/LICENSE)\n[![PyPI](https://img.shields.io/pypi/v/napari-clemreg.svg?color=green)](https://pypi.org/project/napari-clemreg)\n[![Python Version](https://img.shields.io/pypi/pyversions/napari-clemreg.svg?color=green)](https://python.org)\n\n[//]: # ([![codecov](https://codecov.io/gh/krentzd/napari-clemreg/branch/master/graph/badge.svg)](https://codecov.io/gh/krentzd/napari-clemreg))\n[//]: # ([![tests](https://github.com/krentzd/napari-clemreg/workflows/tests/badge.svg)](https://github.com/krentzd/napari-clemreg/actions))\n\n## Installation\n### Local Installation\n\nTo install `napari-clemreg` it is recommended to create a fresh [conda] environment with Python 3.9:\n\n```\nconda create -n clemreg_env python=3.9\n```\nNext, install `napari` with the following command via [pip]: \n\n```\npip install \"napari[all]\"\n```\n\nFinally, `napari-clemreg` can be installed with:\n```\npip install napari-clemreg\n```\nWhen installing `napari-clemreg` on a Windows machine, the following error might appear:\n```\nerror Microsoft Visual C++ 14.0 is required\n```\nEnsure that [Visual Studios C++ 14.00](https://visualstudio.microsoft.com/thank-you-downloading-visual-studio/?sku=BuildTools&rel=16) is installed\n\n### Docker Container\nIf you would like to run `napari-clemreg` in a docker container instead of installing it as above, please follow the instructions in our [Docker guide](docker_guide.md)\n\n## Usage\nCLEM-reg is the combination of 5 main steps, MitoNet segmentation, LoG segmentation,\npoint cloud sampling, point cloud registration and lastly image warping. These 5 steps \ncan be run all at once using the run registration widget shown below with the tick next to it.\nAlternatively, they can be run individually with the numbered widgets.\n\n![clemreg_widget_options.png](docs%2Fimages%2Fclemreg_widget_options.png)\n\n### Run Registration\n\n\n\n![registration_labels.png](docs%2Fimages%2FCLEMreg-fig.png)\n\n1. **Moving Image** - Here you select your light microscopy (LM) data which will\nbe warped to align with the fixed electron microscopy (EM) image.\n2. **Fixed Image** - Here you select your EM data which will\nact as the reference point for the LM to be aligned to.\n3. **Registration Algorithm** - Here you can decide which type of registration algorith\nwill be used for the registration of inputted LM and EM. In terms of speed of each algorithm\nthe following is the generally true, Rigid CPD > Affine CPD > BCPD.\n4. **MitoNet Segmentation Parameters** - Here are the advanced options for the segmentation\nof the mitochondria in the EM data.\n   1. Prediction Across Three Axis - By selecting this option MitoNet will run segmentation\nacross all three axis of the EM volume and then these three predictions will be aggregate.\n5. **LoG Segmentation Parameters** - Here are the advanced options for the segmentation of \nthe mitochondria in the LM data.\n   1. Sigma - Sigma value for the Laplacian of Gaussian filter.\n   2. Threshold - Threshold value for the segmenting the LM data.\n6. **Point Cloud Sampling** - Here are the advanced options for the point cloud sampling of the \nsegmentations of the LM and EM data.\n   1. Sampling Frequency - Frequency of point sampling from the fixed and moving segmentation. The greater the value the more points in the point cloud.\n   2. Sigma - Sigma value for the canny edge filter.\n7. **Point Cloud Registration** - Here are the advanced options for the registration of the point clouds\nof both the LM and EM data.\n   1. Voxel Size - The size voxel size of each point. Smaller the size the less memory consumption.\n   2. Subsampling - Downsampling of the point clouds to reduce memory consumption. Greater the number the fewer points in the point cloud.\n   3. Maximum Iterations - The number of round of point cloud registration. If too small it won't converge on an opitmal registration.\n8. **Image Warping** - Here are the advanced options for the image warping of the moving LM images.\n   1. Interpolation Order - The order of the spline interpolation.\n   2. Aproximate Grid - Controls the \"resolution\" of the grid onto which you're warping. A higher value reduces the step size between coordinates.\n   3. Sub-division Factor - Controls the size of the chunk when applying the warping.\n9. **Save Parameters** - Here you can select the option to save the advanced options you've selected\nto a JSON file which can be kept for reproducibility as well as running the registration again.\n10. **Visualise Intermediate Results** - Here you can select to view the outputs of each step as they\nare completed.\n\n### Split Registration\nAs well as being able to run all the steps of CLEM-reg in one widget (the `Run registration` widget),\nyou are also able to do all these steps independently using the `Split Registration` functionality. \n\nThere are four separate widgets that encapsulate the 5 steps of CLEM-reg each of which have\ntheir own unique input and output:\n1. `MitoNet Segmentation` \n   - **Input**: EM Image\n   - **Output**: EM Segmentation\n2. `LoG Segmentation`\n   - **Input**: LM Image\n   - **Output**: LM Segmentation\n3. `Point Cloud Sampling`\n   - **Input**: LM Segmentation & EM Segmentation\n   - **Output**: LM Point Cloud & LM Point Cloud\n4. `Point Cloud Registration & Image Warping`\n   - **Input**: EM Image, LM Image, LM Point Cloud & EM Point Cloud\n   - **Output**: Registered LM Image, Registered LM Point Cloud\n\n### Registering Multiple LM Channels\nOne can register multiple LM channels at once by doing the following.\n\n1. Start by splitting the LM channels into the separate layers by right-clicking on\nthe layer and then selecting `Split Stack`.\n![merged-channel-split-options.png](docs%2Fimages%2Fmerged-channel-split-options.png)\nThis will result in each of the channels having their own individual layer. \n\n2. Once this is done we must link all the LM layers together, this is done \nby selecting all the layers which will highlight them in blue, once again right-clicking\non the layer and then selecting `Link Layers.`\n![split-channels-link-layers.png](docs%2Fimages%2Fsplit-channels-link-layers.png)\n\n3. When you finally go to run CLEM-reg ensure that for the `Moving Image`\nyou select the LM layer that contains mitochondria.\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 [MIT] license,\n\"napari-clemreg\" 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[file an issue]: https://github.com/krentzd/napari-clemreg/issues\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[conda]: https://docs.conda.io/en/latest/\n\nThis [napari] plugin was generated with [Cookiecutter] using [@napari]'s [cookiecutter-napari-plugin] template.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A plugin for registering multimodal image volumes based on common segmented structures of interest with point-clouds.",
    "version": "0.2.1",
    "project_urls": {
        "Bug Tracker": "https://github.com/krentzd/napari-clemreg/issues",
        "Documentation": "https://github.com/krentzd/napari-clemreg#README.md",
        "Homepage": "https://github.com/krentzd/napari-clemreg",
        "Source Code": "https://github.com/krentzd/napari-clemreg",
        "User Support": "https://github.com/krentzd/napari-clemreg/issues"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f13a78d60a3a90c1f061e2a9db4b48de4c70889bc373fefe207029503d498101",
                "md5": "c554c002811131f563e54dc8d1e18dbe",
                "sha256": "68f64c76312d67b3d2a833903149c1583b9486912e3800bad14b694222769b23"
            },
            "downloads": -1,
            "filename": "napari_clemreg-0.2.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c554c002811131f563e54dc8d1e18dbe",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 41355,
            "upload_time": "2024-12-26T10:22:03",
            "upload_time_iso_8601": "2024-12-26T10:22:03.531020Z",
            "url": "https://files.pythonhosted.org/packages/f1/3a/78d60a3a90c1f061e2a9db4b48de4c70889bc373fefe207029503d498101/napari_clemreg-0.2.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "42fbc540b36a03b20cf858d2e066eb65edb41a8e3869f61c29f4a58e272d2542",
                "md5": "f85876b6d26c8ea616293bebc37ebcdb",
                "sha256": "e839a3eaf5f3cb153aba04c09240ff7bee9a3a077339b29481f9ff7f512e3e89"
            },
            "downloads": -1,
            "filename": "napari_clemreg-0.2.1.tar.gz",
            "has_sig": false,
            "md5_digest": "f85876b6d26c8ea616293bebc37ebcdb",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 4261396,
            "upload_time": "2024-12-26T10:22:12",
            "upload_time_iso_8601": "2024-12-26T10:22:12.780191Z",
            "url": "https://files.pythonhosted.org/packages/42/fb/c540b36a03b20cf858d2e066eb65edb41a8e3869f61c29f4a58e272d2542/napari_clemreg-0.2.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-26 10:22:12",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "krentzd",
    "github_project": "napari-clemreg",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "tox": true,
    "lcname": "napari-clemreg"
}
        
Elapsed time: 1.08226s