HOw to divide an Image into sub images?

Hello all,
I would like to construct an empty image size of 256x256 and divide into 16 sub images.can anyone suggest me how to divide into 16 sub images? Thanks in advance

 Accepted Answer

Matt J
Matt J on 16 Jul 2013
Edited: Matt J on 16 Jul 2013
Using MAT2TILES (Available Here)
subImages = mat2tiles(Image_256x256,[64,64]);
e.g.,
>> mat2tiles(rand(256),[64,64])
ans =
[64x64 double] [64x64 double] [64x64 double] [64x64 double]
[64x64 double] [64x64 double] [64x64 double] [64x64 double]
[64x64 double] [64x64 double] [64x64 double] [64x64 double]
[64x64 double] [64x64 double] [64x64 double] [64x64 double]

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!