setSubDirectory(t,offset)
sets the current IFD to the subimage file directory (subIFD) specified by
offset. Use this function when you want to access subIFDs
linked through the SubIFD tag.
Open a TIFF file and read the value of the SubIFD tag in the current IFD. The SubIFD tag contains byte offsets that specify the location of subIFDs in the IFD.
t = Tiff('example.tif','r');
Read the value of the SubIFD tag to get the subdirectory offsets. Multiple values in the offsets array indicate multiple subdirectories.
offsets = getTag(t,'SubIFD')
offsets = uint64
90114
Navigate to the first subIFD. If you have multiple subdirectories, then you can set any one of the subdirectories as the current directory.
This function corresponds to the TIFFSetSubDirectory 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.
You can also select a web site from the following list
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.