pentachrome-plugin 0.4.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.
- pentachrome_plugin/__init__.py +13 -0
- pentachrome_plugin/_analysis_widget.py +977 -0
- pentachrome_plugin/_guided_widget.py +1209 -0
- pentachrome_plugin/_inference_widget.py +636 -0
- pentachrome_plugin/_inference_worker.py +633 -0
- pentachrome_plugin/_session.py +21 -0
- pentachrome_plugin/_vsi_worker.py +164 -0
- pentachrome_plugin/_widget.py +418 -0
- pentachrome_plugin/napari.yaml +25 -0
- pentachrome_plugin-0.4.0.dist-info/METADATA +251 -0
- pentachrome_plugin-0.4.0.dist-info/RECORD +15 -0
- pentachrome_plugin-0.4.0.dist-info/WHEEL +5 -0
- pentachrome_plugin-0.4.0.dist-info/entry_points.txt +2 -0
- pentachrome_plugin-0.4.0.dist-info/licenses/LICENSE +21 -0
- pentachrome_plugin-0.4.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
__version__ = "0.4.0"
|
|
2
|
+
|
|
3
|
+
from ._guided_widget import GuidedWidget
|
|
4
|
+
from ._widget import VsiExtractorWidget
|
|
5
|
+
from ._inference_widget import NnUnetInferenceWidget
|
|
6
|
+
from ._analysis_widget import AnalysisWidget
|
|
7
|
+
|
|
8
|
+
__all__ = [
|
|
9
|
+
"GuidedWidget",
|
|
10
|
+
"VsiExtractorWidget",
|
|
11
|
+
"NnUnetInferenceWidget",
|
|
12
|
+
"AnalysisWidget",
|
|
13
|
+
]
|