MATLAB: Tiff Image to Vector

image processing

Hi,
How Can I convert a Tiff image into a vector and know the value of column vector?
Thank, Anwar

Best Answer

For plain Tiff files, imread() the file and then reshape() into a vector.
For more complicated Tiff files, you might need to use the Tiff class to read the parts of the file.
Related Question