microlive 1.0.12__tar.gz → 1.0.13__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.
- {microlive-1.0.12 → microlive-1.0.13}/PKG-INFO +1 -1
- {microlive-1.0.12 → microlive-1.0.13}/microlive/__init__.py +1 -1
- {microlive-1.0.12 → microlive-1.0.13}/microlive/microscopy.py +8 -3
- {microlive-1.0.12 → microlive-1.0.13}/.gitignore +0 -0
- {microlive-1.0.12 → microlive-1.0.13}/LICENSE +0 -0
- {microlive-1.0.12 → microlive-1.0.13}/README.md +0 -0
- {microlive-1.0.12 → microlive-1.0.13}/microlive/data/__init__.py +0 -0
- {microlive-1.0.12 → microlive-1.0.13}/microlive/data/icons/__init__.py +0 -0
- {microlive-1.0.12 → microlive-1.0.13}/microlive/data/icons/icon_micro.png +0 -0
- {microlive-1.0.12 → microlive-1.0.13}/microlive/data/models/__init__.py +0 -0
- {microlive-1.0.12 → microlive-1.0.13}/microlive/gui/__init__.py +0 -0
- {microlive-1.0.12 → microlive-1.0.13}/microlive/gui/app.py +0 -0
- {microlive-1.0.12 → microlive-1.0.13}/microlive/gui/main.py +0 -0
- {microlive-1.0.12 → microlive-1.0.13}/microlive/gui/micro_mac.command +0 -0
- {microlive-1.0.12 → microlive-1.0.13}/microlive/gui/micro_windows.bat +0 -0
- {microlive-1.0.12 → microlive-1.0.13}/microlive/imports.py +0 -0
- {microlive-1.0.12 → microlive-1.0.13}/microlive/ml_spot_detection.py +0 -0
- {microlive-1.0.12 → microlive-1.0.13}/microlive/pipelines/__init__.py +0 -0
- {microlive-1.0.12 → microlive-1.0.13}/microlive/pipelines/pipeline_FRAP.py +0 -0
- {microlive-1.0.12 → microlive-1.0.13}/microlive/pipelines/pipeline_folding_efficiency.py +0 -0
- {microlive-1.0.12 → microlive-1.0.13}/microlive/pipelines/pipeline_particle_tracking.py +0 -0
- {microlive-1.0.12 → microlive-1.0.13}/microlive/pipelines/pipeline_spot_detection_no_tracking.py +0 -0
- {microlive-1.0.12 → microlive-1.0.13}/microlive/utils/__init__.py +0 -0
- {microlive-1.0.12 → microlive-1.0.13}/microlive/utils/device.py +0 -0
- {microlive-1.0.12 → microlive-1.0.13}/microlive/utils/resources.py +0 -0
- {microlive-1.0.12 → microlive-1.0.13}/pyproject.toml +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: microlive
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.13
|
|
4
4
|
Summary: Live-cell microscopy image analysis and single-molecule measurements
|
|
5
5
|
Project-URL: Homepage, https://github.com/ningzhaoAnschutz/microlive
|
|
6
6
|
Project-URL: Documentation, https://github.com/ningzhaoAnschutz/microlive/blob/main/docs/user_guide.md
|
|
@@ -23,7 +23,7 @@ Authors:
|
|
|
23
23
|
Nathan L. Nowling, Brian Munsky, Ning Zhao
|
|
24
24
|
"""
|
|
25
25
|
|
|
26
|
-
__version__ = "1.0.
|
|
26
|
+
__version__ = "1.0.13"
|
|
27
27
|
__author__ = "Luis U. Aguilera, William S. Raymond, Rhiannon M. Sears, Nathan L. Nowling, Brian Munsky, Ning Zhao"
|
|
28
28
|
|
|
29
29
|
# Package name (for backward compatibility)
|
|
@@ -1914,9 +1914,14 @@ class Cellpose():
|
|
|
1914
1914
|
# Initialize Cellpose model
|
|
1915
1915
|
if self.pretrained_model is None:
|
|
1916
1916
|
if self.model_type == 'cyto3':
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
|
|
1917
|
+
try:
|
|
1918
|
+
model = denoise.CellposeDenoiseModel(gpu=use_gpu, model_type="cyto3",
|
|
1919
|
+
restore_type="denoise_cyto3")
|
|
1920
|
+
logging.debug('Cellpose: Model cyto3 loaded')
|
|
1921
|
+
except Exception as e:
|
|
1922
|
+
logging.warning(f"Failed to load cyto3 model: {e}. Falling back to 'cyto2'.")
|
|
1923
|
+
self.model_type = 'cyto2'
|
|
1924
|
+
model = models.Cellpose(gpu=use_gpu, model_type='cyto2')
|
|
1920
1925
|
else:
|
|
1921
1926
|
model = models.Cellpose(gpu=use_gpu, model_type=self.model_type) # model_type = 'cyto' or 'nuclei'
|
|
1922
1927
|
else:
|
|
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
|
{microlive-1.0.12 → microlive-1.0.13}/microlive/pipelines/pipeline_spot_detection_no_tracking.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|