How to create a new square matrix with entries of each middle point of each subsection of another larger square matrix?

1 view (last 30 days)
I have a square matrix of size 611x611 in which I want to create a grid on of 47 rows and 47 collums (I believe I can do this with matt2cell command?). Then I want to construct a new square matrix of size 47x47, in which every entry is the middle or approximate middle entry (doesn't have to be exactly the middle one) of each grid square in the 611x611 square matrix. I hope it is clear what I am trying to ask!
PS: If doing it with the middle entry is very difficult or not possible, then every entry of the the 47x47 square matrix being the average of the values of the grids in the 611x611 square matrix is also fine!

Accepted Answer

Rik
Rik on 4 Nov 2020
The code below requires the Image Processing toolbox, although you can do it with loops and mat2cell as well.
A=imread('pears.png');A=A(1:400,1:400,:);A=imresize(A,[611 611]);imshow(A)
fun_pick_middle=@(block) block.data(round(end/2),round(end/2),:);
B = blockproc(A,[611/47 611/47],fun_pick_middle);
imshow(B)
  8 Comments
Rik
Rik on 4 Nov 2020
You're welcome. If I solved your question, please consider marking my answer as accepted answer. If not, feel free to post a comment with your remaining issues.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!