Metadata-Version: 2.1
Name: specrend
Version: 0.0.2
Summary: A tool to transform spectral images into RGB representation.
Home-page: https://github.com/d70-t/specrend
Author: Tobias Kölling
Author-email: tobias.koelling@physik.uni-muenchen.de
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3
Description-Content-Type: text/markdown
Requires-Dist: numpy

# Color rendering of spectra

This module can convert spectra to RGB. It is inspired by
John Walkers ``specrend.c`` and the respective python version
of Andrew Hutchins, but is completely rewritten.

Usage:

```python
spectralimage = ... #some spectral image
spectralbands = ... #the corresponding wavelengths
converter = SpecRGBConverter(spectralbands)
rgbimage = converter.spectrum_to_rgb(spectralimage)
```


