TIFF
Description
The TIFF
object is an adapter that reads and writes 2-D blocked
image data as a single TIFF file.
When writing to disk, the TIFF format requires block sizes to be a multiple of 16. If the
blocked image has any additional metadata in the UserData
property, then
the TIFF
object writes the data to a separate MAT-file with the same file
name.
The object supports lossy and lossless compression. By default, the object uses
Lempel-Ziv-Welch lossless compression. To use a different compression scheme, create the
object and then change the compression scheme using the Compression
property. You can also use this property to turn off compression. For example, to use
JPEG-based lossy compression, use this code.
adapter = images.blocked.TIFF; adapter.Compression = JPEG;
The table lists the support that the TIFF
object has for various blockedImage
capabilities.
Capabilities | Support |
---|---|
Data types | This object supports 2-D images only:
|
Multiple resolution levels | Yes |
Process blocks in parallel using the apply
function | No |
Resume block processing using the apply
function | No |
Creation
Description
adapter = images.blocked.TIFF
creates a TIFF
object that reads and writes blocked image data as a single TIFF file.
Properties
Examples
Version History
Introduced in R2021a