Metadata-Version: 2.1
Name: stardist
Version: 0.3.3
Summary: StarDist
Home-page: https://github.com/mpicbg-csbd/stardist
Author: Uwe Schmidt, Martin Weigert
Author-email: uschmidt@mpi-cbg.de, mweigert@mpi-cbg.de
License: BSD 3-Clause License
Description: [![PyPI version](https://badge.fury.io/py/stardist.svg)](https://pypi.org/project/stardist)
        [![Linux build status](https://travis-ci.com/mpicbg-csbd/stardist.svg?branch=master)](https://travis-ci.com/mpicbg-csbd/stardist)
        [![Windows build status](https://ci.appveyor.com/api/projects/status/gyu127aqc8y5av79/branch/master?svg=true)](https://ci.appveyor.com/project/UweSchmidt/stardist/branch/master)
        
        # *StarDist* - Object Detection with Star-convex Shapes 
        
        ![](https://github.com/mpicbg-csbd/stardist/raw/master/images/stardist_overview.png)
        
        This repository contains the implementation of star-convex object detection for 2D and 3D images, as described in the papers: 
        
        <img src="https://github.com/mpicbg-csbd/stardist/raw/master/images/stardist_logo.jpg" title="siân is the king of the universe" width="25%" align="right">
        
        - Uwe Schmidt, Martin Weigert, Coleman Broaddus, and Gene Myers.  
        [*Cell Detection with Star-convex Polygons*](https://arxiv.org/abs/1806.03535).  
        International Conference on Medical Image Computing and Computer-Assisted Intervention (MICCAI), Granada, Spain, September 2018.
        
        - Martin Weigert, Uwe Schmidt, Robert Haase, Ko Sugawara, and Gene Myers.  
        [*Star-convex Polyhedra for 3D Object Detection and Segmentation in Microscopy*](https://arxiv.org/abs/1908.03636).  
        arXiv, 2019
        
        Please [cite the paper(s)](#how-to-cite) if you are using this code in your research.
        
        
        ## Overview
        
        The following figure illustrates the general approach for 2D images. The training data consists of corresponding pairs of input (i.e. raw) images and fully annotated label images (i.e. every pixel is labeled with a unique object id or 0 for background). 
        A model is trained to densely predict the distances (r) to the object boundary along a fixed set of rays and object probabilities (d), which together produce an overcomplete set of candidate polygons for a given input image. The final result is obtained via non-maximum supression (NMS) of these candidates.  
        
        ![](https://github.com/mpicbg-csbd/stardist/raw/master/images/overview_2d.png)
        
        The approach for 3D volumes is similar to the one described for 2D, using pairs of input and fully annotated label volumes as training data.
        
        ![](https://github.com/mpicbg-csbd/stardist/raw/master/images/overview_3d.png)
        
        
        ## Installation
        
        This package requires Python 3.5 (or newer).
        
        Please first [install TensorFlow 1.x](https://www.tensorflow.org/install)
        by following the official instructions. (**Do not choose a preview release version of TensorFlow 2.x**)
        For [GPU support](https://www.tensorflow.org/install/gpu), it is very
        important to install the specific versions of CUDA and cuDNN that are
        compatible with the respective version of TensorFlow.
        
        *StarDist* can then be installed with `pip`:
        
            pip install stardist
        
        #### Notes
        
        - Depending on your Python installation, you may need to use `pip3` instead of `pip`.
        - Since this package relies on a C++ extension, you could run into compilation problems (see [Troubleshooting](#troubleshooting) below). We currently do not provide pre-compiled binaries.
        - StarDist uses the deep learning library [Keras](https://keras.io), which requires a suitable [backend](https://keras.io/backend/#keras-backends) (we currently only support [TensorFlow](http://www.tensorflow.org/)).
        - *(Optional)* You need to install [gputools](https://github.com/maweigert/gputools) if you want to use OpenCL-based computations on the GPU to speed up training.
        - *(Optional)* You might experience improved performance during training if you additionally install the [Multi-Label Anisotropic 3D Euclidean Distance Transform (MLAEDT-3D)](https://github.com/seung-lab/euclidean-distance-transform-3d).
        
        
        ## Usage
        
        We provide example workflows for 2D and 3D via Jupyter [notebooks](https://github.com/mpicbg-csbd/stardist/tree/master/examples) that illustrate how this package can be used.
        
        ![](https://github.com/mpicbg-csbd/stardist/raw/master/images/example_steps.png)
        
        
        ## Troubleshooting
        
        Installation requires Python 3.5 (or newer) and a working C++ compiler. We have only tested [GCC](http://gcc.gnu.org) (macOS, Linux), [Clang](https://clang.llvm.org) (macOS), and [Visual Studio](https://visualstudio.microsoft.com) (Windows 10). Please [open an issue](https://github.com/mpicbg-csbd/stardist/issues) if you have problems that are not resolved by the information below.
        
        If available, the C++ code will make use of [OpenMP](https://en.wikipedia.org/wiki/OpenMP) to exploit multiple CPU cores for substantially reduced runtime on modern CPUs. This can be important to prevent slow model training.
        
        
        ### macOS
        Although Apple provides the Clang C/C++ compiler via [Xcode](https://developer.apple.com/xcode/), it does not come with OpenMP support.
        Hence, we suggest to install the OpenMP-enabled GCC compiler, e.g. via [Homebrew](https://brew.sh) with `brew install gcc`. After that, you can install the package like this (adjust names/paths as necessary):
        
            CC=/usr/local/bin/gcc-8 CXX=/usr/local/bin/g++-8 pip install stardist
        
        
        ### Windows
        Please install the [Build Tools for Visual Studio 2019](https://www.visualstudio.com/downloads/#build-tools-for-visual-studio-2019) from Microsoft to compile extensions for Python 3.5 and newer (see [this](https://wiki.python.org/moin/WindowsCompilers) for further information). During installation, make sure to select the *C++ build tools*. Note that the compiler comes with OpenMP support.
        
        
        ## How to cite 
        ``` 
        @inproceedings{schmidt2018,
          author    = {Uwe Schmidt and Martin Weigert and Coleman Broaddus and Gene Myers},
          title     = {Cell Detection with Star-Convex Polygons},
          booktitle = {Medical Image Computing and Computer Assisted Intervention - {MICCAI} 
          2018 - 21st International Conference, Granada, Spain, September 16-20, 2018, Proceedings, Part {II}},
          pages     = {265--273},
          year      = {2018},
          doi       = {10.1007/978-3-030-00934-2_30}
        }
        
        @article{weigert2019,
          author    = {Martin Weigert and Uwe Schmidt and Robert Haase and Ko Sugawara and Gene Myers},
          title     = {Star-convex Polyhedra for 3D Object Detection and Segmentation in Microscopy},
          journal   = {arXiv:1908.03636},
          year      = {2019}
        }
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3.5
Description-Content-Type: text/markdown
