필터 지우기
필터 지우기

Combining image after diving it into blocks

조회 수: 1 (최근 30일)
Ayesha
Ayesha 2014년 5월 15일
댓글: shital shinde 2020년 2월 14일
Hello,
I applied dwt on 500x500 image and split LL which is 254x254 into 16x16 block. Here's the code snippet which explains how I split the image:
imshow(block,[]); % LL block obtained after applying dwt over 500x500 image
newR=16;
newC=16;
r1=[newR*ones(1,wholeBlockRows),rem(rows,newR)];
c1=[newC*ones(1,wholeBlockCols),rem(columns,newC)];
i = 1;
for r=1:size(mat2cell(block,r1,c1);,1)
for c=1:size(mat2cell(block,r1,c1);,2)
split=ca{r,c};
i=i+1;
end
end
Two questions: 1. How could I recombine the 16x16 blocks together to form 254x254 image after this? 2. Excuse my arrogance but is applying idwt2 to the recombined 254x254 image enough to get the 500x500 image back?
  댓글 수: 1
shital shinde
shital shinde 2020년 2월 14일
will you please provide me your code of DWT by dividing image

댓글을 달려면 로그인하십시오.

채택된 답변

Image Analyst
Image Analyst 2014년 5월 15일
To stitch horizontally
wideImage = [image1, image2];
To stitch vertically
tallImage = [image1; image2];

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by