How to calculate and plot the histogram of DCT coefficients of an image?
12 ビュー (過去 30 日間)
古いコメントを表示
How to calculate and plot the histogram of DCT coefficients of an image?
0 件のコメント
採用された回答
Walter Roberson
2017 年 4 月 24 日
Calculate the coefficients with dct(). Call histogram() with them.
2 件のコメント
Walter Roberson
2017 年 4 月 24 日
Img = imread('cameraman.tif');
y = dct(double(Img));
histogram(y)
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Histograms についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!