Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

how discrete wavelet transform used by using a key? To secure the image

조회 수: 1 (최근 30일)
Sultan Mehmood
Sultan Mehmood 2018년 8월 8일
마감: MATLAB Answer Bot 2021년 8월 20일
if true
% code
end
X=imread('lena512.bmp');
[LoD,HiD] = wfilters('haar','d');
[cA,cH,cV,cD] = dwt2(X,LoD,HiD,'mode','symh');
colormap gray(255);
subplot(2,2,1);
imagesc(cA);
title('Approximation');
subplot(2,2,2);
imagesc(cH);
title('Horizontal');
subplot(2,2,3);
imagesc(cV);
title('Vertical');
subplot(2,2,4);
imagesc(cD);
title('Diagonal');

답변 (0개)

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by