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

2 次查看(过去 30 天)
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!

采纳的回答

Rik
Rik 2020-11-4
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 个评论
Rik
Rik 2020-11-4
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.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by