hypertool 2.1.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.
hypertool/__init__.py ADDED
@@ -0,0 +1,19 @@
1
+ """
2
+ Hypertool - Hyperspectral Image Processing Toolkit
3
+
4
+ A command-line tool for visualization and processing of hyperspectral images
5
+ in ENVI format (HDR/RAW).
6
+
7
+ Features:
8
+ - Interactive visualization with napari
9
+ - ROI-based cropping for classification workflows
10
+ - Pixel-level segmentation masks for semantic segmentation
11
+ - Automatic workflow detection
12
+ """
13
+
14
+ from .cli import cli
15
+
16
+ __version__ = "2.1.0"
17
+ __author__ = "Danny Zimmerman"
18
+
19
+ __all__ = ['cli']