How to calculate and plot the histogram of DCT coefficients of an image?
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Mohsin Shah
el 24 de Abr. de 2017
Comentada: Walter Roberson
el 24 de Abr. de 2017
How to calculate and plot the histogram of DCT coefficients of an image?
0 comentarios
Respuesta aceptada
Walter Roberson
el 24 de Abr. de 2017
Calculate the coefficients with dct(). Call histogram() with them.
2 comentarios
Walter Roberson
el 24 de Abr. de 2017
Img = imread('cameraman.tif');
y = dct(double(Img));
histogram(y)
Más respuestas (0)
Ver también
Categorías
Más información sobre Histograms en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!