Divide image into equal parts grid and save each part
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposte (2)
Sean de Wolski
il 24 Ott 2012
You could use blockproc or a double for-loop with imwrite().
2 Commenti
Matt J
il 24 Ott 2012
Modificato: Matt J
il 24 Ott 2012
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
il 24 Ott 2012
Modificato: Matt J
il 24 Ott 2012
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 Commenti
Sean de Wolski
il 24 Ott 2012
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.
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!