cellfinder 1.3.1__tar.gz → 1.3.2__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.
- {cellfinder-1.3.1 → cellfinder-1.3.2}/PKG-INFO +2 -2
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/napari/curation.py +2 -2
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder.egg-info/PKG-INFO +2 -2
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder.egg-info/requires.txt +1 -1
- {cellfinder-1.3.1 → cellfinder-1.3.2}/pyproject.toml +1 -1
- {cellfinder-1.3.1 → cellfinder-1.3.2}/.github/workflows/test_and_deploy.yml +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/.github/workflows/test_include_guard.yaml +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/.gitignore +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/.napari/config.yml +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/CITATION.cff +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/LICENSE +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/MANIFEST.in +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/README.md +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/__init__.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/cli_migration_warning.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/__init__.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/classify/__init__.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/classify/augment.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/classify/classify.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/classify/cube_generator.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/classify/resnet.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/classify/tools.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/config/__init__.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/config/cellfinder.conf +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/detect/__init__.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/detect/detect.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/detect/filters/__init__.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/detect/filters/plane/__init__.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/detect/filters/plane/classical_filter.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/detect/filters/plane/plane_filter.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/detect/filters/plane/tile_walker.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/detect/filters/setup_filters.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/detect/filters/volume/__init__.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/detect/filters/volume/ball_filter.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/detect/filters/volume/structure_detection.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/detect/filters/volume/structure_splitting.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/detect/filters/volume/volume_filter.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/download/__init__.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/download/cli.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/download/download.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/main.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/tools/__init__.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/tools/array_operations.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/tools/geometry.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/tools/image_processing.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/tools/prep.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/tools/source_files.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/tools/system.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/tools/tiff.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/tools/tools.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/train/__init__.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/train/train_yml.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/types.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/napari/__init__.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/napari/detect/__init__.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/napari/detect/detect.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/napari/detect/detect_containers.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/napari/detect/thread_worker.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/napari/input_container.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/napari/napari.yaml +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/napari/sample_data.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/napari/train/__init__.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/napari/train/train.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/napari/train/train_containers.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/napari/utils.py +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder.egg-info/SOURCES.txt +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder.egg-info/dependency_links.txt +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder.egg-info/entry_points.txt +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder.egg-info/top_level.txt +0 -0
- {cellfinder-1.3.1 → cellfinder-1.3.2}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: cellfinder
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.2
|
|
4
4
|
Summary: Automated 3D cell detection in large microscopy images
|
|
5
5
|
Author-email: "Adam Tyson, Christian Niedworok, Charly Rousseau" <code@adamltyson.com>
|
|
6
6
|
License: BSD-3-Clause
|
|
@@ -29,7 +29,7 @@ Requires-Dist: dask[array]
|
|
|
29
29
|
Requires-Dist: fancylog>=0.0.7
|
|
30
30
|
Requires-Dist: natsort
|
|
31
31
|
Requires-Dist: numba
|
|
32
|
-
Requires-Dist: numpy
|
|
32
|
+
Requires-Dist: numpy<2
|
|
33
33
|
Requires-Dist: scikit-image
|
|
34
34
|
Requires-Dist: scikit-learn
|
|
35
35
|
Requires-Dist: keras>=3.0.0
|
|
@@ -113,7 +113,7 @@ class CurationWidget(QWidget):
|
|
|
113
113
|
layer_names = [
|
|
114
114
|
layer.name
|
|
115
115
|
for layer in self.viewer.layers
|
|
116
|
-
if
|
|
116
|
+
if isinstance(layer, layer_type)
|
|
117
117
|
]
|
|
118
118
|
|
|
119
119
|
if layer_names:
|
|
@@ -329,7 +329,7 @@ class CurationWidget(QWidget):
|
|
|
329
329
|
|
|
330
330
|
if len(self.viewer.layers.selection) == 1:
|
|
331
331
|
layer = list(self.viewer.layers.selection)[0]
|
|
332
|
-
if
|
|
332
|
+
if isinstance(layer, napari.layers.Points):
|
|
333
333
|
if len(layer.data) > 0:
|
|
334
334
|
if point_type == "cell":
|
|
335
335
|
destination_layer = self.training_data_cell_layer
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: cellfinder
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.2
|
|
4
4
|
Summary: Automated 3D cell detection in large microscopy images
|
|
5
5
|
Author-email: "Adam Tyson, Christian Niedworok, Charly Rousseau" <code@adamltyson.com>
|
|
6
6
|
License: BSD-3-Clause
|
|
@@ -29,7 +29,7 @@ Requires-Dist: dask[array]
|
|
|
29
29
|
Requires-Dist: fancylog>=0.0.7
|
|
30
30
|
Requires-Dist: natsort
|
|
31
31
|
Requires-Dist: numba
|
|
32
|
-
Requires-Dist: numpy
|
|
32
|
+
Requires-Dist: numpy<2
|
|
33
33
|
Requires-Dist: scikit-image
|
|
34
34
|
Requires-Dist: scikit-learn
|
|
35
35
|
Requires-Dist: keras>=3.0.0
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/detect/filters/plane/classical_filter.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/detect/filters/volume/structure_detection.py
RENAMED
|
File without changes
|
{cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/detect/filters/volume/structure_splitting.py
RENAMED
|
File without changes
|
{cellfinder-1.3.1 → cellfinder-1.3.2}/cellfinder/core/detect/filters/volume/volume_filter.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|