I am trying to convert an OCT image from a Heidelberg machine that is in ‘.E2E’ format into ‘JPG’ format using Python.
I was trying the following code,
from oct_converter.readers import E2E
filepath = 'my_image.e2e'
e2e = E2E(filepath)
fundus_image = e2e.read_fundus_image()
the type of ‘fundus_image’ is a list. Now, what should be the next step? I do not understand, how can I get an image from this list. Kindly help me.