How to reduce contrast of Histogram equalized image

1 回表示 (過去 30 日間)
A R
A R 2020 年 4 月 3 日
編集済み: A R 2020 年 4 月 3 日
Hi, I performed histogram equalization on thermal gray scale image.
load image.mat;
a = vidFrame2;
figure;
subplot(2,2,1),imshow(a),title('original image');
subplot(2,2,2),imhist(a),title('Histogram of original image');
b=histeq(a);
subplot(2,2,3),imshow(b),title('Histogram equivalized image');
subplot(2,2,4),imhist(b),title('Histogram of output image');
I have attached the output image. The output of histogram equalization gives a very high contrast image, where the minute details of the image is lost. How to do histogram equalization with correct contrast.

回答 (0 件)

カテゴリ

Help Center および File ExchangeImage Filtering and Enhancement についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by