Clear Filters
Clear Filters

Reading in a tiff file

1 view (last 30 days)
Robert
Robert on 16 Oct 2014
Commented: Guillaume on 16 Oct 2014
I'm trying to read an image file called 200301.tif, I simply can't get it to import as the file extension is not recognised using x = imread(200301.tif, tif)
What would be the correct code to do this?
  2 Comments
Guillaume
Guillaume on 16 Oct 2014
Did you really issue the command?
x = imread(200301.tif, tif)
which would give you syntax error. Or did you actually write?
x = imread('200301.tif', 'tif')
Guillaume
Guillaume on 16 Oct 2014
What does
imfinfo('200301.tif')
return?

Sign in to comment.

Answers (0)

Categories

Find more on Image Processing Toolbox in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!