image thumbnail
from Handling Large Images with Image Processing Toolbox Webinar by Alan Hwang
Code demos for the Handling Large Images with Image Processing Toolbox Webinar.

RunMeFirst.m
% This file will create the needed images for the BLOCKPROC demos:

I_small = imread('AT3_1m4_10.tif');
I_medium = imresize(I_small,3);
I_large = imresize(I_small,6);

imwrite(I_small, 'AT3_1m4_10_small.tif');
imwrite(I_medium, 'AT3_1m4_10_medium.tif');
imwrite(I_large, 'AT3_1m4_10_large.tif');

Contact us at files@mathworks.com