Can OCT scans (of file format .E2E) be uploaded into 3D slicer

Operating system:
Slicer version:
Expected behavior:
Actual behavior:

I don’t think Slicer or any of its underlying toolkits can read this format, but it might not be too difficult to add support for it. Do you have a specification and sample data sets?

I do not have sample data sets. The file format that I would like to load into slicer is an OCT scan. Unfortunately, the file format is .e2e which is. proprietary file format of Heidelberg. I would like to know if this can be uploaded into slicer. Or if there is a way I can convert this e2e file into a dicom file

It seems that you need to ask developers of the proprietary software for an exporter or converter to any standard file format (or ask them to give you file format specification so that you can implement a converter).

ImageJ is often a good place to start for the question of how to read some niche or proprietary imaging format, and indeed it looks like some people have reverse-engineered this one:

https://imagej.nih.gov/ij/plugins/heyex/index.html

Keywords there quickly lead me to a C++ implementation:

https://bitbucket.org/uocte/uocte

HTH,
Isaiah

1 Like

You can use the eyepy Python package to read images from E2E files and then write the numpy arrays to DICOM for an import to 3D Slicer.

Disclaimer: I am the developer of eyepy