Matlab code to split an image into a square grid of square blocks

20 次查看(过去 30 天)
Hello everyone,
I am having a hard time writing a matlab code that splits an image into a square grid of square blocks of side equal to where then shuffle the grid using randperm. So it is based on user input of how much the image should be cut down to, say the user inputs SplitImage(Image, r). All help is appreciated.
Capture.PNG

采纳的回答

Matt J
Matt J 2019-10-10
This uses mat2tiles (Download)
A=mat2tiles( imread('cameraman.tif'), [32,32]);
[m,n]=size(A);
B=cell2mat(A(randperm(m), randperm(n)));
imshow(B)
untitled.png

更多回答(1 个)

Walter Roberson
Walter Roberson 2019-10-9
See mat2cell() to do the splitting into cell arrays. Then randomize the cell array order, and then cell2mat() to restore.
You will have problems if your block size is not an exact divisor of the array size unless you take special care that all rows and columns in the randomized blocks add up to consistent sizes.
  1 个评论
Abigail Thomas
Abigail Thomas 2019-10-9
Thank you for you clear answer sir. Could you please supply with a code so I could compare mine with it? I am just starting out with Matlab.

请先登录,再进行评论。

Community Treasure Hunt

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

Start Hunting!

Translated by