I have a .tiff video file and want to input it into my Matlab script. But vision.VideoFileReader supports only .mpeg .mp2 .mpg .m4v but NOT .tiff.
Does Matlab have a function that converts .tiff to a format readable by vision.VideoFileReader?
You can just use imread
.
img = imread('image.tif', i);
will read the i-th image from a multi-image TIFF file.