Problems with example tiff stack in GitHub ¶
By: Tomas on Feb. 3, 2024, 11:26 a.m.
Hi, there seems to be an issue with the provided tiff stack in https://github.com/DM2LL/JustRAIGS-IEEE-ISBI-2024/tree/main/Example%20algorithm/test/input/stacked-color-fundus-images/images.
Running the code:
stack='bd658ff4-d26f-4f08-ad6b-861e6f3e7c26.tiff'
dataset = Image.open(stack)
produces an error:
UnidentifiedImageError: cannot identify image file 'bd658ff4-d26f-4f08-ad6b-861e6f3e7c26.tiff'
Could you look into it? Also, I tried with
from skimage import io
im = io.imread(stack)
which also threw and error of unrecognized format. P.S. It is not an issue of correct path to the stack.