waveorder 2.2.1b0__py3-none-any.whl → 3.0.0__py3-none-any.whl
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.
- waveorder/_version.py +16 -3
- waveorder/acq/__init__.py +0 -0
- waveorder/acq/acq_functions.py +166 -0
- waveorder/assets/HSV_legend.png +0 -0
- waveorder/assets/JCh_legend.png +0 -0
- waveorder/assets/waveorder_plugin_logo.png +0 -0
- waveorder/calib/Calibration.py +1512 -0
- waveorder/calib/Optimization.py +470 -0
- waveorder/calib/__init__.py +0 -0
- waveorder/calib/calibration_workers.py +464 -0
- waveorder/cli/apply_inverse_models.py +328 -0
- waveorder/cli/apply_inverse_transfer_function.py +379 -0
- waveorder/cli/compute_transfer_function.py +432 -0
- waveorder/cli/gui_widget.py +58 -0
- waveorder/cli/main.py +39 -0
- waveorder/cli/monitor.py +163 -0
- waveorder/cli/option_eat_all.py +47 -0
- waveorder/cli/parsing.py +122 -0
- waveorder/cli/printing.py +16 -0
- waveorder/cli/reconstruct.py +67 -0
- waveorder/cli/settings.py +187 -0
- waveorder/cli/utils.py +175 -0
- waveorder/filter.py +1 -2
- waveorder/focus.py +136 -25
- waveorder/io/__init__.py +0 -0
- waveorder/io/_reader.py +61 -0
- waveorder/io/core_functions.py +272 -0
- waveorder/io/metadata_reader.py +195 -0
- waveorder/io/utils.py +175 -0
- waveorder/io/visualization.py +160 -0
- waveorder/models/inplane_oriented_thick_pol3d_vector.py +3 -3
- waveorder/models/isotropic_fluorescent_thick_3d.py +92 -0
- waveorder/models/isotropic_fluorescent_thin_3d.py +331 -0
- waveorder/models/isotropic_thin_3d.py +73 -72
- waveorder/models/phase_thick_3d.py +103 -4
- waveorder/napari.yaml +36 -0
- waveorder/plugin/__init__.py +9 -0
- waveorder/plugin/gui.py +1094 -0
- waveorder/plugin/gui.ui +1440 -0
- waveorder/plugin/job_manager.py +42 -0
- waveorder/plugin/main_widget.py +1605 -0
- waveorder/plugin/tab_recon.py +3294 -0
- waveorder/scripts/__init__.py +0 -0
- waveorder/scripts/launch_napari.py +13 -0
- waveorder/scripts/repeat-cal-acq-rec.py +147 -0
- waveorder/scripts/repeat-calibration.py +31 -0
- waveorder/scripts/samples.py +85 -0
- waveorder/scripts/simulate_zarr_acq.py +204 -0
- waveorder/util.py +1 -1
- waveorder/visuals/napari_visuals.py +1 -1
- waveorder-3.0.0.dist-info/METADATA +350 -0
- waveorder-3.0.0.dist-info/RECORD +69 -0
- {waveorder-2.2.1b0.dist-info → waveorder-3.0.0.dist-info}/WHEEL +1 -1
- waveorder-3.0.0.dist-info/entry_points.txt +5 -0
- {waveorder-2.2.1b0.dist-info → waveorder-3.0.0.dist-info/licenses}/LICENSE +13 -1
- waveorder-2.2.1b0.dist-info/METADATA +0 -187
- waveorder-2.2.1b0.dist-info/RECORD +0 -27
- {waveorder-2.2.1b0.dist-info → waveorder-3.0.0.dist-info}/top_level.txt +0 -0
waveorder/napari.yaml
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
name: waveorder
|
|
2
|
+
display_name: waveorder
|
|
3
|
+
contributions:
|
|
4
|
+
commands:
|
|
5
|
+
- id: waveorder.MainWidget
|
|
6
|
+
title: Create Main Widget
|
|
7
|
+
python_name: waveorder.plugin.main_widget:MainWidget
|
|
8
|
+
- id: waveorder.get_reader
|
|
9
|
+
title: Read ome-zarr and ome-tif files
|
|
10
|
+
python_name: waveorder.io._reader:napari_get_reader
|
|
11
|
+
- id: waveorder.polarization_target_data
|
|
12
|
+
title: Polarization Target Data
|
|
13
|
+
python_name: waveorder.scripts.samples:read_polarization_target_data
|
|
14
|
+
- id: waveorder.polarization_target_reconstruction
|
|
15
|
+
title: Polarization Target Data
|
|
16
|
+
python_name: waveorder.scripts.samples:read_polarization_target_reconstruction
|
|
17
|
+
- id: waveorder.zebrafish_embryo_reconstruction
|
|
18
|
+
title: Zebrafish Embryo Reconstruction
|
|
19
|
+
python_name: waveorder.scripts.samples:read_zebrafish_embryo_reconstruction
|
|
20
|
+
readers:
|
|
21
|
+
- command: waveorder.get_reader
|
|
22
|
+
accepts_directories: true
|
|
23
|
+
filename_patterns: ['*.zarr', '*.tif']
|
|
24
|
+
widgets:
|
|
25
|
+
- command: waveorder.MainWidget
|
|
26
|
+
display_name: Main Menu
|
|
27
|
+
sample_data:
|
|
28
|
+
- command: waveorder.polarization_target_data
|
|
29
|
+
key: polarization-target-data
|
|
30
|
+
display_name: Polarization Target Data (10 MB)
|
|
31
|
+
- command: waveorder.polarization_target_reconstruction
|
|
32
|
+
key: polarization-target-reconstruction
|
|
33
|
+
display_name: Polarization Target Reconstruction (10 MB)
|
|
34
|
+
- command: waveorder.zebrafish_embryo_reconstruction
|
|
35
|
+
key: zebrafish-embryo-reconstruction
|
|
36
|
+
display_name: Zebrafish Embryo Reconstruction (92 MB)
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# qtpy defaults to PyQt5/PySide2 which can be present in upgraded environments
|
|
2
|
+
try:
|
|
3
|
+
import qtpy
|
|
4
|
+
|
|
5
|
+
qtpy.API_NAME # check qtpy API name - one is required for GUI
|
|
6
|
+
|
|
7
|
+
except RuntimeError as error:
|
|
8
|
+
if type(error).__name__ == "QtBindingsNotFoundError":
|
|
9
|
+
print("WARNING: QtBindings (PyQT or PySide) was not found for GUI")
|