matlab-process-large-images
Installation
SKILL.md
When to Use
- Writing code that creates, processes, or visualizes
blockedImageobjects - Implementing
images.blocked.Adaptersubclasses for custom file formats - User needs help with large image data that doesn't fit in memory
- User wants to leverage parallel computing for image processing tasks
- Working with whole-slide images, geospatial rasters, 3D microscopy volumes, or tiled mosaics
- Any time a user is working with a TIFF file — load this skill and check the file first with
imfinfo. UseblockedImageif the file is large (dimensions > 10,000 pixels in any axis), has multiple channels beyond RGB, or contains multiple IFDs (could be pyramid levels, time series, or Z-stack slices)
When NOT to Use
- Image fits comfortably in memory and no parallel processing is needed — use standard
imread/imwriteworkflows - General image display without
blockedImage— use thematlab-display-imageskill instead - Deep learning model architecture or training loop design — this skill covers data preparation with
blockedImageDatastore, not network design