wavelet transform
1 回表示 (過去 30 日間)
古いコメントを表示
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?
0 件のコメント
回答 (1 件)
Wayne King
2012 年 2 月 18 日
% 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);
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Continuous Wavelet Transforms についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!