Divide image into equal parts grid and save each part
3 次查看(过去 30 天)
显示 更早的评论
Hi,
I have a several images with different height and width and I want to divide them into 9 equal parts (3x3 grid) and save each part into a separate file.
Is there a simple way to do it ? Is there a function that automatically apply the grid and split the image?
Thanks a lot in advance.
PS In case I am not clear I am looking to write something similar to the TileMage Image Splitter software (<http://tilemage.50webs.com/>) without GUI.
0 个评论
回答(2 个)
Sean de Wolski
2012-10-24
You could use blockproc or a double for-loop with imwrite().
2 个评论
Matt J
2012-10-24
编辑:Matt J
2012-10-24
If you called blockproc as
blockproc(A,[3,3],fun)
then the blocks will be 3x3. I don't know what you mean by "recall each block".
I also don't think anyone understands why you are still determined to use blockproc when there is only 1 block in the image that you care about (see Sean's last comment).
Matt J
2012-10-24
编辑:Matt J
2012-10-24
I think it's a bad idea to split the image into separate files, though. Why wouldn't it be better to keep them all in one file?
2 个评论
Sean de Wolski
2012-10-24
So then extract it
Icareabout = I(40:60,40:60,:) %extract a piece in the middle
If this is what you want then you should specify this in the question.
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!