DWT
1 回表示 (過去 30 日間)
古いコメントを表示
i am working on dwt2 with mode as 'db2' problem i am facing is that size of cA is not exactly half of image used,which create problem in further part if anyone knows plz help
0 件のコメント
採用された回答
Wayne King
2012 年 3 月 23 日
Hi Kush, that is because the default extension mode for the DWT is not periodic. First, set the extension mode to 'per'
dwtmode('per');
Then use dwt2()
load woman;
dwtmode('per');
[A,H,V,D] = dwt2(X,'db2');
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Discrete Multiresolution Analysis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!