wavelet transform

I use the function: X_InPlace = lwt2(I,LS,level,'typeDEC',typeDEC); CA = X_InPlace(1:2:end,1:2:end); CH = X_InPlace(2:2:end,1:2:end); CV = X_InPlace(1:2:end,2:2:end); CD = X_InPlace(2:2:end,2:2:end);
then, I change in the values of CA,CH,CV and CD
How can compound new subbands in one matrix as X_InPlace?

답변 (1개)

Wayne King
Wayne King 2012년 2월 18일

0 개 추천

% assuming I was your input image
X_newInPlace = zeros(size(I));
CA = X_newInPlace(1:2:end,1:2:end);
CH = X_newInPlace(2:2:end,1:2:end);
CV = X_newInPlace(1:2:end,2:2:end);
CD = X_newInPlace(2:2:end,2:2:end);

카테고리

도움말 센터File Exchange에서 Continuous Wavelet Transforms에 대해 자세히 알아보기

질문:

2012년 2월 18일

Community Treasure Hunt

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

Start Hunting!

Translated by