Determine if image is tiled
tf = isTiled(t)
example
tf = isTiled(t) returns true if the image has a tiled layout. Otherwise the function returns false.
t
true
false
collapse all
Create a Tiff object for a TIFF file and check if the image in the file has a tiled organization.
Tiff
t = Tiff('example.tif','r'); tf = isTiled(t)
tf = logical 1
The image has a tiled organization.
Close the Tiff object.
close(t)
Tiff object representing a TIFF file. Use the Tiff function to create the object.
This function corresponds to the TIFFIsTiled function in the LibTIFF C API. To use this function, you must be familiar with the TIFF specification and technical notes. View this documentation at LibTIFF - TIFF Library and Utilities.
TIFFIsTiled
LibTIFF - TIFF Library and Utilities
You have a modified version of this example. Do you want to open this example with your edits?