histogram equalization transformation function
古いコメントを表示
Suppose that a given 3-bit image(L=8) of size 64*64 pixels (M*N=4096) has the intensity distribution shown as below. How to obtain histogram equalization transformation function and then compute the equalized histogram of the image?
Rk nk
0 800
1 520
2 970
3 660
4 330
5 450
6 260
7 106
回答 (1 件)
Image Analyst
2018 年 12 月 9 日
0 投票
Call histeq() followed by imhist().
2 件のコメント
pandu hanifa
2018 年 12 月 9 日
編集済み: pandu hanifa
2018 年 12 月 9 日
Image Analyst
2018 年 12 月 9 日
Why without built-in functions???
Why would you want to compute the histogram, then the cdf, then invert it, and use intlut() when you can just do it in one line of code?
カテゴリ
ヘルプ センター および File Exchange で Histograms についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!