This is a native python implementation for reading Heidelberg Heyex Spectralis files. The current version only supports the Heyex VOL files.
The full documentation of this project is located at: http://heyexreader.readthedocs.io/
$ pip install heyexReader
- Numpy
- Pillow
import heyexReader
vol = heyexReader.volFile("test.vol")
vol.renderIRslo("slo.png", renderGrid = True)
vol.renderOCTscans("oct", renderSeg = True)
print(vol.oct.shape)
print(vol.irslo.shape)
The basis for this code was ported from Markus Mayer's excellent work https://www5.cs.fau.de/research/software/octseg/.