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 CenterFile Exchange에서 Image Filtering and Enhancement에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by