epicure 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.
- epicure-0.1.3/LICENSE +28 -0
- epicure-0.1.3/MANIFEST.in +5 -0
- epicure-0.1.3/PKG-INFO +86 -0
- epicure-0.1.3/README.md +40 -0
- epicure-0.1.3/setup.cfg +72 -0
- epicure-0.1.3/setup.py +2 -0
- epicure-0.1.3/src/epicure/Utils.py +665 -0
- epicure-0.1.3/src/epicure/__init__.py +1 -0
- epicure-0.1.3/src/epicure/concatenate_movie.py +205 -0
- epicure-0.1.3/src/epicure/displaying.py +307 -0
- epicure-0.1.3/src/epicure/editing.py +1865 -0
- epicure-0.1.3/src/epicure/epicuring.py +993 -0
- epicure-0.1.3/src/epicure/laptrack_centroids.py +150 -0
- epicure-0.1.3/src/epicure/laptrack_overlaps.py +107 -0
- epicure-0.1.3/src/epicure/napari.yaml +22 -0
- epicure-0.1.3/src/epicure/outputing.py +794 -0
- epicure-0.1.3/src/epicure/prev_divers.py +147 -0
- epicure-0.1.3/src/epicure/prev_epicell.py +155 -0
- epicure-0.1.3/src/epicure/prev_suggestions.py +52 -0
- epicure-0.1.3/src/epicure/start_epicuring.py +104 -0
- epicure-0.1.3/src/epicure/suspecting.py +960 -0
- epicure-0.1.3/src/epicure/tmp.py +300 -0
- epicure-0.1.3/src/epicure/track_optical.py +156 -0
- epicure-0.1.3/src/epicure/tracking.py +1037 -0
- epicure-0.1.3/src/epicure/tracking_editing.py +141 -0
- epicure-0.1.3/src/epicure.egg-info/PKG-INFO +86 -0
- epicure-0.1.3/src/epicure.egg-info/SOURCES.txt +30 -0
- epicure-0.1.3/src/epicure.egg-info/dependency_links.txt +1 -0
- epicure-0.1.3/src/epicure.egg-info/entry_points.txt +2 -0
- epicure-0.1.3/src/epicure.egg-info/requires.txt +20 -0
- epicure-0.1.3/src/epicure.egg-info/top_level.txt +1 -0
epicure-0.1.3/LICENSE
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
BSD 3-Clause License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023, Gaëlle LETORT
|
|
4
|
+
|
|
5
|
+
Redistribution and use in source and binary forms, with or without
|
|
6
|
+
modification, are permitted provided that the following conditions are met:
|
|
7
|
+
|
|
8
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
9
|
+
list of conditions and the following disclaimer.
|
|
10
|
+
|
|
11
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
12
|
+
this list of conditions and the following disclaimer in the documentation
|
|
13
|
+
and/or other materials provided with the distribution.
|
|
14
|
+
|
|
15
|
+
3. Neither the name of the copyright holder nor the names of its
|
|
16
|
+
contributors may be used to endorse or promote products derived from
|
|
17
|
+
this software without specific prior written permission.
|
|
18
|
+
|
|
19
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
20
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
21
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
22
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
23
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
24
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
25
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
26
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
27
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
28
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
epicure-0.1.3/PKG-INFO
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: epicure
|
|
3
|
+
Version: 0.1.3
|
|
4
|
+
Summary: Napari plugin to manually correct epithelia segmentation in movies
|
|
5
|
+
Home-page: https://gitlab.pasteur.fr/gletort/epicure
|
|
6
|
+
Author: Gaëlle Letort
|
|
7
|
+
License: BSD-3-Clause
|
|
8
|
+
Project-URL: Bug Tracker, https://gitlab.pasteur.fr/gletort/epicure/issues
|
|
9
|
+
Project-URL: Documentation, https://gitlab.pasteur.fr/gletort/epicure#README.md
|
|
10
|
+
Project-URL: Source Code, https://gitlab.pasteur.fr/gletort/epicure
|
|
11
|
+
Project-URL: User Support, https://gitlab.pasteur.fr/gletort/epicure/issues
|
|
12
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
13
|
+
Classifier: Framework :: napari
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: License :: OSI Approved :: BSD License
|
|
16
|
+
Classifier: Operating System :: OS Independent
|
|
17
|
+
Classifier: Programming Language :: Python
|
|
18
|
+
Classifier: Programming Language :: Python :: 3
|
|
19
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
23
|
+
Classifier: Topic :: Scientific/Engineering :: Image Processing
|
|
24
|
+
Requires-Python: >=3.8
|
|
25
|
+
Description-Content-Type: text/markdown
|
|
26
|
+
License-File: LICENSE
|
|
27
|
+
Requires-Dist: napari<=0.4.19
|
|
28
|
+
Requires-Dist: numpy
|
|
29
|
+
Requires-Dist: magicgui
|
|
30
|
+
Requires-Dist: qtpy
|
|
31
|
+
Requires-Dist: scikit-image
|
|
32
|
+
Requires-Dist: opencv_python_headless
|
|
33
|
+
Requires-Dist: roifile
|
|
34
|
+
Requires-Dist: xlsxwriter
|
|
35
|
+
Requires-Dist: laptrack
|
|
36
|
+
Requires-Dist: matplotlib
|
|
37
|
+
Requires-Dist: imagecodecs
|
|
38
|
+
Requires-Dist: edt
|
|
39
|
+
Provides-Extra: testing
|
|
40
|
+
Requires-Dist: tox; extra == "testing"
|
|
41
|
+
Requires-Dist: pytest; extra == "testing"
|
|
42
|
+
Requires-Dist: pytest-cov; extra == "testing"
|
|
43
|
+
Requires-Dist: pytest-qt; extra == "testing"
|
|
44
|
+
Requires-Dist: napari; extra == "testing"
|
|
45
|
+
Requires-Dist: pyqt5; extra == "testing"
|
|
46
|
+
|
|
47
|
+
# EpiCure
|
|
48
|
+
|
|
49
|
+
[](https://gitlab.pasteur.fr/gletort/epicure/raw/main/LICENSE)
|
|
50
|
+
[](https://pypi.org/project/epicure)
|
|
51
|
+
[](https://python.org)
|
|
52
|
+
[](https://napari-hub.org/plugins/epicure)
|
|
53
|
+
|
|
54
|
+
Napari plugin to manually correct epithelia segmentation in movies
|
|
55
|
+
|
|
56
|
+
> **Documentation in the [wiki](https://gitlab.pasteur.fr/gletort/epicure/-/wikis/EpiCure)**
|
|
57
|
+
|
|
58
|
+
## Installation
|
|
59
|
+
|
|
60
|
+
### Install plugin
|
|
61
|
+
To install EpiCure on a fresh python virtual environment, type inside the environement:
|
|
62
|
+
```
|
|
63
|
+
pip install epicure
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
Then launch `Napari`, and the plugin should be visible in the `Plugins` list.
|
|
67
|
+
|
|
68
|
+
If you already have an environment with `Napari` installed, you can also install it directly in `Napari>Plugins>Install/Uninstall plugins`
|
|
69
|
+
|
|
70
|
+
### Install code
|
|
71
|
+
To have the code to be able to modify it, clone this repository. You can use `pip install -e .` so that everytime you update the code, the plugin will be updated.
|
|
72
|
+
|
|
73
|
+
## Usage
|
|
74
|
+
|
|
75
|
+
Refer to the [wiki](https://gitlab.pasteur.fr/gletort/epicure/-/wikis/EpiCure) for documentation of the different steps possible in the pipeline.
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
This [napari] plugin was initialized with [Cookiecutter] using [@napari]'s [cookiecutter-napari-plugin] template.
|
|
80
|
+
|
|
81
|
+
[napari]: https://github.com/napari/napari
|
|
82
|
+
[Cookiecutter]: https://github.com/audreyr/cookiecutter
|
|
83
|
+
[file an issue]: https://github.com/gletort/epicure/issues
|
|
84
|
+
[tox]: https://tox.readthedocs.io/en/latest/
|
|
85
|
+
[pip]: https://pypi.org/project/pip/
|
|
86
|
+
[PyPI]: https://pypi.org/
|
epicure-0.1.3/README.md
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# EpiCure
|
|
2
|
+
|
|
3
|
+
[](https://gitlab.pasteur.fr/gletort/epicure/raw/main/LICENSE)
|
|
4
|
+
[](https://pypi.org/project/epicure)
|
|
5
|
+
[](https://python.org)
|
|
6
|
+
[](https://napari-hub.org/plugins/epicure)
|
|
7
|
+
|
|
8
|
+
Napari plugin to manually correct epithelia segmentation in movies
|
|
9
|
+
|
|
10
|
+
> **Documentation in the [wiki](https://gitlab.pasteur.fr/gletort/epicure/-/wikis/EpiCure)**
|
|
11
|
+
|
|
12
|
+
## Installation
|
|
13
|
+
|
|
14
|
+
### Install plugin
|
|
15
|
+
To install EpiCure on a fresh python virtual environment, type inside the environement:
|
|
16
|
+
```
|
|
17
|
+
pip install epicure
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
Then launch `Napari`, and the plugin should be visible in the `Plugins` list.
|
|
21
|
+
|
|
22
|
+
If you already have an environment with `Napari` installed, you can also install it directly in `Napari>Plugins>Install/Uninstall plugins`
|
|
23
|
+
|
|
24
|
+
### Install code
|
|
25
|
+
To have the code to be able to modify it, clone this repository. You can use `pip install -e .` so that everytime you update the code, the plugin will be updated.
|
|
26
|
+
|
|
27
|
+
## Usage
|
|
28
|
+
|
|
29
|
+
Refer to the [wiki](https://gitlab.pasteur.fr/gletort/epicure/-/wikis/EpiCure) for documentation of the different steps possible in the pipeline.
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
This [napari] plugin was initialized with [Cookiecutter] using [@napari]'s [cookiecutter-napari-plugin] template.
|
|
34
|
+
|
|
35
|
+
[napari]: https://github.com/napari/napari
|
|
36
|
+
[Cookiecutter]: https://github.com/audreyr/cookiecutter
|
|
37
|
+
[file an issue]: https://github.com/gletort/epicure/issues
|
|
38
|
+
[tox]: https://tox.readthedocs.io/en/latest/
|
|
39
|
+
[pip]: https://pypi.org/project/pip/
|
|
40
|
+
[PyPI]: https://pypi.org/
|
epicure-0.1.3/setup.cfg
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
[metadata]
|
|
2
|
+
name = epicure
|
|
3
|
+
version = 0.1.3
|
|
4
|
+
description = Napari plugin to manually correct epithelia segmentation in movies
|
|
5
|
+
long_description = file: README.md
|
|
6
|
+
long_description_content_type = text/markdown
|
|
7
|
+
url = https://gitlab.pasteur.fr/gletort/epicure
|
|
8
|
+
author = Gaëlle Letort
|
|
9
|
+
license = BSD-3-Clause
|
|
10
|
+
license_files = LICENSE
|
|
11
|
+
classifiers =
|
|
12
|
+
Development Status :: 2 - Pre-Alpha
|
|
13
|
+
Framework :: napari
|
|
14
|
+
Intended Audience :: Developers
|
|
15
|
+
License :: OSI Approved :: BSD License
|
|
16
|
+
Operating System :: OS Independent
|
|
17
|
+
Programming Language :: Python
|
|
18
|
+
Programming Language :: Python :: 3
|
|
19
|
+
Programming Language :: Python :: 3 :: Only
|
|
20
|
+
Programming Language :: Python :: 3.8
|
|
21
|
+
Programming Language :: Python :: 3.9
|
|
22
|
+
Programming Language :: Python :: 3.10
|
|
23
|
+
Topic :: Scientific/Engineering :: Image Processing
|
|
24
|
+
project_urls =
|
|
25
|
+
Bug Tracker = https://gitlab.pasteur.fr/gletort/epicure/issues
|
|
26
|
+
Documentation = https://gitlab.pasteur.fr/gletort/epicure#README.md
|
|
27
|
+
Source Code = https://gitlab.pasteur.fr/gletort/epicure
|
|
28
|
+
User Support = https://gitlab.pasteur.fr/gletort/epicure/issues
|
|
29
|
+
|
|
30
|
+
[options]
|
|
31
|
+
packages = find:
|
|
32
|
+
install_requires =
|
|
33
|
+
napari <= 0.4.19
|
|
34
|
+
numpy
|
|
35
|
+
magicgui
|
|
36
|
+
qtpy
|
|
37
|
+
scikit-image
|
|
38
|
+
opencv_python_headless
|
|
39
|
+
roifile
|
|
40
|
+
xlsxwriter
|
|
41
|
+
laptrack
|
|
42
|
+
matplotlib
|
|
43
|
+
imagecodecs
|
|
44
|
+
edt
|
|
45
|
+
python_requires = >=3.8
|
|
46
|
+
include_package_data = True
|
|
47
|
+
package_dir =
|
|
48
|
+
=src
|
|
49
|
+
|
|
50
|
+
[options.packages.find]
|
|
51
|
+
where = src
|
|
52
|
+
|
|
53
|
+
[options.entry_points]
|
|
54
|
+
napari.manifest =
|
|
55
|
+
epicure = epicure:napari.yaml
|
|
56
|
+
|
|
57
|
+
[options.extras_require]
|
|
58
|
+
testing =
|
|
59
|
+
tox
|
|
60
|
+
pytest # https://docs.pytest.org/en/latest/contents.html
|
|
61
|
+
pytest-cov # https://pytest-cov.readthedocs.io/en/latest/
|
|
62
|
+
pytest-qt # https://pytest-qt.readthedocs.io/en/latest/
|
|
63
|
+
napari
|
|
64
|
+
pyqt5
|
|
65
|
+
|
|
66
|
+
[options.package_data]
|
|
67
|
+
* = *.yaml
|
|
68
|
+
|
|
69
|
+
[egg_info]
|
|
70
|
+
tag_build =
|
|
71
|
+
tag_date = 0
|
|
72
|
+
|
epicure-0.1.3/setup.py
ADDED