All Projects → MouseLand → cellpose-napari

MouseLand / cellpose-napari

Licence: BSD-3-Clause license
napari plugin for cellpose (see www.cellpose.org) - an anatomical segmentation tool

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to cellpose-napari

brainreg-segment
Segmentation of 3D shapes in a common anatomical space
Stars: ✭ 13 (-56.67%)
Mutual labels:  segmentation, napari
root painter
RootPainter: Deep Learning Segmentation of Biological Images with Corrective Annotation
Stars: ✭ 28 (-6.67%)
Mutual labels:  segmentation
MITK-Diffusion
MITK Diffusion - Official part of the Medical Imaging Interaction Toolkit
Stars: ✭ 47 (+56.67%)
Mutual labels:  segmentation
BrainMaGe
Brain extraction in presence of abnormalities, using single and multiple MRI modalities
Stars: ✭ 23 (-23.33%)
Mutual labels:  segmentation
blindassist-ios
BlindAssist iOS app
Stars: ✭ 34 (+13.33%)
Mutual labels:  segmentation
airs
Road Segmentation in Satellite Aerial Images
Stars: ✭ 51 (+70%)
Mutual labels:  segmentation
point-cloud-segmentation
TF2 implementation of PointNet for segmenting point clouds
Stars: ✭ 33 (+10%)
Mutual labels:  segmentation
mutex-watershed
The mutex watershed for image segmentation.
Stars: ✭ 54 (+80%)
Mutual labels:  segmentation
Brain-Segmentation
Brain Segmentation on MRBrains18
Stars: ✭ 37 (+23.33%)
Mutual labels:  segmentation
Deeplab-Large-FOV
My Implementation of the deeplab_v1 (known as deeplab large fov)
Stars: ✭ 26 (-13.33%)
Mutual labels:  segmentation
ReSegment
Burmese (Myanmar) syllable level segmentation with regex.
Stars: ✭ 24 (-20%)
Mutual labels:  segmentation
segm-lstm
[deprecated] reference code for string segmentation using LSTM(tensorflow)
Stars: ✭ 19 (-36.67%)
Mutual labels:  segmentation
ImcSegmentationPipeline
A pixel classification based multiplexed image segmentation pipeline
Stars: ✭ 62 (+106.67%)
Mutual labels:  segmentation
argus-tgs-salt
Kaggle | 14th place solution for TGS Salt Identification Challenge
Stars: ✭ 73 (+143.33%)
Mutual labels:  segmentation
Sequential-patch-based-segmentation
Sequential patch-based segmentation for medical image
Stars: ✭ 20 (-33.33%)
Mutual labels:  segmentation
BCNet
Deep Occlusion-Aware Instance Segmentation with Overlapping BiLayers [CVPR 2021]
Stars: ✭ 434 (+1346.67%)
Mutual labels:  segmentation
android tflite
GPU Accelerated TensorFlow Lite applications on Android NDK. Higher accuracy face detection, Age and gender estimation, Human pose estimation, Artistic style transfer
Stars: ✭ 105 (+250%)
Mutual labels:  segmentation
eta
ETA: Extensible Toolkit for Analytics
Stars: ✭ 22 (-26.67%)
Mutual labels:  segmentation
Skin Lesion Detection Deep Learning
Skin lesion detection from dermoscopic images using Convolutional Neural Networks
Stars: ✭ 48 (+60%)
Mutual labels:  segmentation
maskSLIC
Simple linear iterative clustering (SLIC) in a region of interest (ROI)
Stars: ✭ 28 (-6.67%)
Mutual labels:  segmentation

cellpose-napari cellpose

Documentation Status tests codecov PyPI version PyPI - Downloads Python version License Contributors website GitHub stars GitHub forks

a napari plugin for anatomical segmentation of general cellular images


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

The plugin code was written by Carsen Stringer, and the cellpose code was written by Carsen Stringer and Marius Pachitariu. To learn about Cellpose, read the paper or watch this talk.

For support with the plugin, please open an issue. For support with cellpose, please open an issue on the cellpose repo.

If you use this plugin please cite the paper: ::

  @article{stringer2021cellpose,
  title={Cellpose: a generalist algorithm for cellular segmentation},
  author={Stringer, Carsen and Wang, Tim and Michaelos, Michalis and Pachitariu, Marius},
  journal={Nature Methods},
  volume={18},
  number={1},
  pages={100--106},
  year={2021},
  publisher={Nature Publishing Group}
  }

cellpose-napari_plugin

Installation

Install an Anaconda distribution of Python -- Choose Python 3 and your operating system. Note you might need to use an anaconda prompt if you did not add anaconda to the path.

Install napari with pip: pip install napari[all]. Then install cellpose-napari via [pip]:

pip install cellpose-napari

Or install the plugin inside napari in the plugin window.

If install fails in your base environment, create a new environment:

  1. Download the environment.yml file from the repository. You can do this by cloning the repository, or copy-pasting the text from the file into a text document on your local computer.
  2. Open an anaconda prompt / command prompt with conda for python 3 in the path
  3. Change directories to where the environment.yml is and run conda env create -f environment.yml
  4. To activate this new environment, run conda activate cellpose-napari
  5. You should see (cellpose-napari) on the left side of the terminal line.

If you have issues with cellpose installation, see the cellpose docs for more details, and then if the suggestions fail, open an issue.

Upgrading software

You can upgrade the plugin with

pip install cellpose-napari --upgrade

and you can upgrade cellpose with

pip install cellpose --upgrade

GPU version (CUDA) on Windows or Linux

If you plan on running many images, you may want to install a GPU version of torch (if it isn't already installed).

Before installing the GPU version, remove the CPU version:

pip uninstall torch

Follow the instructions here to determine what version to install. The Anaconda install is recommended along with CUDA version 10.2. For instance this command will install the 10.2 version on Linux and Windows (note the torchvision and torchaudio commands are removed because cellpose doesn't require them):

conda install pytorch cudatoolkit=10.2 -c pytorch

When upgrading GPU Cellpose in the future, you will want to ignore dependencies (to ensure that the pip version of torch does not install):

pip install --no-deps cellpose --upgrade

Installation of github version

Follow steps from above to install the dependencies. In the github repository, run pip install -e . and the github version will be installed. If you want to go back to the pip version of cellpose-napari, then say pip install cellpose-napari.

Running the software

Open napari with the cellpose-napari dock widget open

napari -w cellpose-napari

There is sample data in the File menu, or get started with your own images!

Detailed usage documentation.

Contributing

Contributions are very welcome. Tests are run with pytest.

License

Distributed under the terms of the BSD-3 license, "cellpose-napari" is free and open source software.

Dependencies

cellpose-napari relies on the following excellent packages (which are automatically installed with conda/pip if missing):

cellpose relies on the following excellent packages (which are automatically installed with conda/pip if missing):

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].