CAN WE PERFORM iwt on 3D image
9 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I am working on image compression,I have to perform integer tO integer wavelet transform,I have converted my rgb image into gray scale and performed IWT,can I perform IWT ON RGB image,CA ANYONE TELL PLEASE
0 Commenti
Risposta accettata
Wayne King
il 29 Set 2011
Hi, yes, you can using lifting.
LS = liftwave('db4','Int2Int');
X = randi(255,256,256,3);
[CA,CH,CV,CD] = lwt2(X,LS);
X1 = ilwt2(CA,CH,CV,CD,LS);
isequal(X,X1)
Wayne
Più risposte (1)
Vedere anche
Categorie
Scopri di più su Wavelet Toolbox in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!