How to calculate and plot the histogram of DCT coefficients of an image?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Mohsin Shah
il 24 Apr 2017
Commentato: Walter Roberson
il 24 Apr 2017
How to calculate and plot the histogram of DCT coefficients of an image?
0 Commenti
Risposta accettata
Walter Roberson
il 24 Apr 2017
Calculate the coefficients with dct(). Call histogram() with them.
2 Commenti
Walter Roberson
il 24 Apr 2017
Img = imread('cameraman.tif');
y = dct(double(Img));
histogram(y)
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Histograms 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!