https://github.com/z-vig/hypmix
Hyperspectral Unmixing Library for Python
https://github.com/z-vig/hypmix
Last synced: 5 months ago
JSON representation
Hyperspectral Unmixing Library for Python
- Host: GitHub
- URL: https://github.com/z-vig/hypmix
- Owner: z-vig
- License: mit
- Created: 2025-12-02T19:18:31.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-12-19T21:23:56.000Z (6 months ago)
- Last Synced: 2025-12-22T07:38:57.443Z (6 months ago)
- Language: Python
- Size: 403 KB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# hypmix
Hyperspectral Unmixing Library for Python
## Installation
```bash
pip install hypmix
```
## Usage
```python
import hypmix
em_list = []
for data, wvl in zip(spectrum_list, wvl_list):
spec=hypmix.Spectrum(data, wvl)
em_list.append(hypmix.EndMember("endmember1", spec))
model = hypmix.MixtureModel(em_list, data_cube)
model.add_virtual_shade()
res = model.run("save/path/results.hdf5", "model_name")
hypmix.save_model_result(res)
```
## MixView GUI
