Replies: 1 comment 2 replies
-
Hi, You can get the raw data as a list of numpy arrays doing something like file = E2E(filepaths[0]['path'])
oct_volumes = (
file.read_oct_volume()
) # returns a list of all OCT volumes with additional metadata if available
for volume in oct_volumes:
list_of_slices = volume.volume
slice_as_np_array = list_of_slices[0] and from there apply any conversion you want / save or plot the images as you like. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I'm having some trouble with opening the E2E files that I have.
It does create tiff or jpg files as I want, but the images have worse resolution than when it was imaged.
I'm guessing it's because of the error message "Lossy conversion from float64 to uint8.". But I'm not sure how I can convert the e2e to uint8 prior to getting the images.
Could you give me some advice on that??
Thank you for your help!!
Beta Was this translation helpful? Give feedback.
All reactions