extract matrix from matrix

sir i have image of size 256*256 and i want to extract 5*5 matrix from every 8*8 block of 256*256 image what is code for this...also i want to add zeros to all 5*5 blocks and make 5*5 to 8*8 matrix of the 256*256 image ..what is code for this

1 件のコメント

the cyclist
the cyclist 2014 年 4 月 12 日
For your second question, how are the 5x5 blocks stored, specifically?

サインインしてコメントする。

回答 (1 件)

the cyclist
the cyclist 2014 年 4 月 11 日

0 投票

Here is a very straightforward way to do this:
% Put in some pretend data
bigMatrix = rand(256);
% The algorithm
for ni=1:8:256
for nj = 1:8:256
i_idx = (ni-1)/8+1;
j_idx = (nj-1)/8+1;
smallMatrices{i_idx,j_idx} = bigMatrix(ni:ni+7,nj:nj+7);
smallMatrices{i_idx,j_idx}(:,6:8) = 0;
smallMatrices{i_idx,j_idx}(6:8,:) = 0;
end
end

4 件のコメント

Jitesh Bhanushali
Jitesh Bhanushali 2014 年 4 月 11 日
sir i want 2 different code for that
the cyclist
the cyclist 2014 年 4 月 12 日
If you remove the lines where I set the rows/columns to zero, then it solves your first issue.
Jitesh Bhanushali
Jitesh Bhanushali 2014 年 4 月 24 日
sir how to solve second issue
the cyclist
the cyclist 2014 年 4 月 25 日
I can't help you solve the second issue until you respond to the comment I made (just under your question). How are the 5x5 blocks stored?

サインインしてコメントする。

質問済み:

2014 年 4 月 11 日

コメント済み:

2014 年 4 月 25 日

Community Treasure Hunt

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

Start Hunting!

Translated by