dct (8*8)
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
how to calculate Block-base DCT of an image ....
0 Kommentare
Akzeptierte Antwort
Wayne King
am 14 Okt. 2011
If you have the Image Processing Toolbox.
X = randn(100,100);
fun = @(block_struct) dct2(block_struct.data);
Y = blockproc(X,[8 8],fun);
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Image Filtering and Enhancement 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!