DiSTNet2D 0.1.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,38 @@
1
+ Metadata-Version: 2.1
2
+ Name: DiSTNet2D
3
+ Version: 0.1.3
4
+ Summary: tensorflow/keras implementation of DiSTNet 2D
5
+ Home-page: https://github.com/jeanollion/distnet2d
6
+ Download-URL: https://github.com/jeanollion/distnet2d/releases/download/v0.1.3/distnet2d-0.1.3.tar.gz
7
+ Author: Jean Ollion
8
+ Author-email: jean.ollion@polytechnique.org
9
+ Keywords: Segmentation,Tracking,Cell,Tensorflow,Keras
10
+ Classifier: Development Status :: 4 - Beta
11
+ Classifier: Intended Audience :: Science/Research
12
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
13
+ Classifier: Topic :: Scientific/Engineering :: Image Processing
14
+ Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
15
+ Classifier: Programming Language :: Python :: 3
16
+ Requires-Python: >=3
17
+ Description-Content-Type: text/markdown
18
+ License-File: LICENSE.txt
19
+ Requires-Dist: numpy
20
+ Requires-Dist: scipy
21
+ Requires-Dist: tensorflow>=2.7.1
22
+ Requires-Dist: edt>=2.0.2
23
+ Requires-Dist: scikit-fmm
24
+ Requires-Dist: numba
25
+ Requires-Dist: dataset_iterator>=0.4.0
26
+ Requires-Dist: elasticdeform>=0.4.7
27
+
28
+ # DistNet2D: Leveraging long-range temporal information for efficient segmentation and tracking
29
+
30
+ This repository contains python code for training the neural network.
31
+
32
+ [Link to preprint](https://arxiv.org/abs/2310.19641)
33
+
34
+ [Link to tutorial](https://github.com/jeanollion/bacmman/wiki/DistNet2D)
35
+
36
+ Jean Ollion, Martin Maliet, Caroline Giuglaris, Elise Vacher, Maxime Deforet
37
+
38
+ Extracting long tracks and lineages from videomicroscopy requires an extremely low error rate, which is challenging on complex datasets of dense or deforming cells. Leveraging temporal context is key to overcoming this challenge. We propose DistNet2D, a new deep neural network (DNN) architecture for 2D cell segmentation and tracking that leverages both mid- and long-term temporal information. DistNet2D considers seven frames at the input and uses a post-processing procedure that exploits information from the entire video to correct segmentation errors. DistNet2D outperforms two recent methods on two experimental datasets, one containing densely packed bacterial cells and the other containing eukaryotic cells. It is integrated into an ImageJ-based graphical user interface for 2D data visualization, curation, and training. Finally, we demonstrate the performance of DistNet2D on correlating the size and shape of cells with their transport properties over large statistics, for both bacterial and eukaryotic cells.
@@ -0,0 +1,27 @@
1
+ LICENSE.txt
2
+ README.md
3
+ setup.py
4
+ DiSTNet2D.egg-info/PKG-INFO
5
+ DiSTNet2D.egg-info/SOURCES.txt
6
+ DiSTNet2D.egg-info/dependency_links.txt
7
+ DiSTNet2D.egg-info/requires.txt
8
+ DiSTNet2D.egg-info/top_level.txt
9
+ distnet_2d/__init__.py
10
+ distnet_2d/data/__init__.py
11
+ distnet_2d/data/dydx_iterator.py
12
+ distnet_2d/data/medoid.py
13
+ distnet_2d/data/swim1d.py
14
+ distnet_2d/model/__init__.py
15
+ distnet_2d/model/architectures.py
16
+ distnet_2d/model/distnet_2d.py
17
+ distnet_2d/model/distnet_2d_seg.py
18
+ distnet_2d/model/gradient_accumulator.py
19
+ distnet_2d/model/layers.py
20
+ distnet_2d/model/spatial_attention.py
21
+ distnet_2d/utils/__init__.py
22
+ distnet_2d/utils/agc.py
23
+ distnet_2d/utils/callbacks.py
24
+ distnet_2d/utils/helpers.py
25
+ distnet_2d/utils/losses.py
26
+ distnet_2d/utils/lovasz_loss.py
27
+ distnet_2d/utils/objectwise_computation_tf.py
@@ -0,0 +1,8 @@
1
+ numpy
2
+ scipy
3
+ tensorflow>=2.7.1
4
+ edt>=2.0.2
5
+ scikit-fmm
6
+ numba
7
+ dataset_iterator>=0.4.0
8
+ elasticdeform>=0.4.7
@@ -0,0 +1 @@
1
+ distnet_2d