centreborelli / mf2f

Self-supervised training for blind multi-frame video denoising
https://cmla.github.io/mf2f/
25 stars 2 forks source link

Issue regarding .tiff file #5

Open pankajsharma47 opened 3 years ago

pankajsharma47 commented 3 years ago

Good afternoon sir, When I am implementing the code for same dataset, It is not able to read the input files in .tiff format. Can you help please regarding this?

YCWangVince commented 2 years ago

Have the same problem:

ERROR(""): uncolorize type not supported

ERROR: could not read image from file "../test/noisy_poisson8/098.tiff"

gfacciol commented 2 years ago

I'm not sure I understand the question. The problem is to read the existing tiff file ? For that you can use several tools. This project uses iio but tifffile is also a valid option:

import tifffile
data = tifffile.imread('file.tiff')
littledist commented 3 months ago

Same problem encountered. the terminal return `ERROR(""): can not open file "test/noisy_poisson8/009.tiff" in mode "r"

ERROR: could not read image from file "test/noisy_poisson8/009.tiff"

ERROR(""): can not open file "test/noisy_poisson8/010.tiff" in mode "r"

ERROR: could not read image from file "test/noisy_poisson8/010.tiff"`

and i have excluded several possible causes, making sure the .tiff image itself is currect ,all the requirements are correctly installed, permission of the file meets the requirements.

The error still exist. So confused!