Imsplit

版本 1.2.0.0 (2.9 KB) 作者: Jurgen
Split image or matrix into subparts using simple syntax.
1.2K 次下载
更新时间 2013/5/2

查看许可证

Divide image/matrix into cell array of blocks. Can specify per dimension in how many pieces it needs to divide. See examples in help section for a quick idea of how it works.

I = imsplit(im,2) splits image into 2x2 blocks etc.

I = imsplit(rgb,3,3) splits an rgb image 'rgb' into 1x1x3 cell array containing colorplanes.

Instead of a mat2cell wrapper this uses my own implementation of indexing (using permute) to split matrices into smaller and smaller pieces.
Since MATLAB's Answers get a lot of those submatrix questions I thought I'd share what I made.

No handling of uneven divisions, ie can not divide 400 pixel width into 3 blocks--common usage with images is crop or resize, then split. Recommend mat2cell or Matt J's mat2tiles(File ID: #35085) for uneven blocks.

May be faster if use a wrapper for mat2cell, but still pretty fast in its own right.

If you have imdisp() you can display the resulting cell array as you would an image. The illustration was created using imdisp with the 'bordersize' option to add 1% margins between the blocks.

引用格式

Jurgen (2024). Imsplit (https://www.mathworks.com/matlabcentral/fileexchange/40173-imsplit), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2008a
兼容任何版本
平台兼容性
Windows macOS Linux

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
1.2.0.0

Patched cell indexing. Cell2mat() should return original for all outputs now.

1.1.0.0

Expanded description

1.0.0.0