DWT
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Akzeptierte Antwort
Wayne King
am 23 Mär. 2012
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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Discrete Multiresolution Analysis finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!