필터 지우기
필터 지우기

Divide 256*256 image into 2*2 blocks

조회 수: 1 (최근 30일)
niranjan v
niranjan v 2019년 1월 25일
답변: Walter Roberson 2019년 1월 25일
I am working on a project of image processing (watermarking) & needs to divide 256*256 image into 2*2 blocks (overlaping) to get 4096 matrices.If anyone knows about it plz help me.

채택된 답변

Walter Roberson
Walter Roberson 2019년 1월 25일
if ndims(YourArray) == 2
blocks2x2 = mat2cell(YourArray, 2 * ones(1,128), 2 * ones(1,128) );
else
blocks2x2 = mat2cell(YourArray, 2 * ones(1,128), 2*ones(1,128), size(YourArray,3) );
end
(Really this can be done with just the second of those assignments without an 'if', but splitting the case permits you to avoid a warning.

추가 답변 (0개)

태그

Community Treasure Hunt

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

Start Hunting!

Translated by