| Contents | Index |
[A, R]
= geotiffread(filename)
[X, cmap, R]
= geotiffread(filename)
[A, refmat, bbox]
= geotiffread(filename)
[X, cmap, refmat, bbox]
= geotiffread(filename)
[...] = geotiffread(filename, idx)
[...] = geotiffread(url, ...)
[A, R] = geotiffread(filename) reads a georeferenced grayscale, RGB, or multispectral image or data grid from the GeoTIFF file specified by filename into A and constructs a spatial referencing object, R.
[X, cmap, R] = geotiffread(filename) reads an indexed image into X and the associated colormap into cmap, and constructs a spatial referencing object, R. Colormap values in the image file are rescaled into the range [0,1].
[A, refmat, bbox] = geotiffread(filename) reads a georeferenced grayscale, RGB, or multispectral image or data grid into A; the corresponding referencing matrix into refmat; and the bounding box into bbox.
[X, cmap, refmat, bbox] = geotiffread(filename) reads an indexed image into X, the associated colormap into cmap, the referencing matrix into refmat, and the bounding box into bbox. The referencing matrix must be unambiguously defined by the GeoTIFF file, otherwise it and the bounding box are returned empty.
[...] = geotiffread(filename, idx) reads one image from a multi-image GeoTIFF file.
[...] = geotiffread(url, ...) reads the GeoTIFF image from a URL.
geotiffread imports pixel data using the TIFF-reading capabilities of the MATLAB function imread and likewise shares any limitations of imread. Consult the imread documentation for information on TIFF image support.
Read and display the Boston GeoTIFF image:
[boston, R] = geotiffread('boston.tif');
figure
mapshow(boston, R);
axis image off

boston.tif copyright © GeoEye™, all rights reserved.
geoshow | geotiffinfo | geotiffwrite | imread | mapshow

Includes the most popular MATLAB recorded presentations with Q&A sessions led by MATLAB experts.
| © 1984-2012- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |