hypertool 0.3.1__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 +18 -0
- hypertool/_version.py +24 -0
- hypertool/cli.py +1371 -0
- hypertool-0.3.1.dist-info/METADATA +272 -0
- hypertool-0.3.1.dist-info/RECORD +9 -0
- hypertool-0.3.1.dist-info/WHEEL +5 -0
- hypertool-0.3.1.dist-info/entry_points.txt +2 -0
- hypertool-0.3.1.dist-info/licenses/LICENSE.txt +7 -0
- hypertool-0.3.1.dist-info/top_level.txt +1 -0
hypertool/__init__.py
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
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
|
+
__author__ = "Daniel Pérez Rodríguez"
|
|
17
|
+
|
|
18
|
+
__all__ = ['cli']
|
hypertool/_version.py
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# file generated by vcs-versioning
|
|
2
|
+
# don't change, don't track in version control
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
__all__ = [
|
|
6
|
+
"__version__",
|
|
7
|
+
"__version_tuple__",
|
|
8
|
+
"version",
|
|
9
|
+
"version_tuple",
|
|
10
|
+
"__commit_id__",
|
|
11
|
+
"commit_id",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
version: str
|
|
15
|
+
__version__: str
|
|
16
|
+
__version_tuple__: tuple[int | str, ...]
|
|
17
|
+
version_tuple: tuple[int | str, ...]
|
|
18
|
+
commit_id: str | None
|
|
19
|
+
__commit_id__: str | None
|
|
20
|
+
|
|
21
|
+
__version__ = version = '0.3.1'
|
|
22
|
+
__version_tuple__ = version_tuple = (0, 3, 1)
|
|
23
|
+
|
|
24
|
+
__commit_id__ = commit_id = None
|