Code computes histogram equalization not similar to Matlab's histeq function

3 ビュー (過去 30 日間)
Mohsin Shah
Mohsin Shah 2018 年 5 月 5 日
回答済み: xiao 2018 年 5 月 11 日
I have a written a simple code for histogram equalization based on this formula: HistEq = (max gray leve/total no of pixels)*cumulative sum(count). I wonder why the result is quite different from Matlab's function histeq? Can someone please figure out where I am wrong?
clear;
clc;
% Input image
Img = imread('lena.bmp');
I = double(Img);
[H, W] = size(I);
total = H * W;
count = imhist(Img);
maxL = 255;
csum = 0; % Initialize to zero
cumuSum = zeros(1, length(count))';
for idx = 1 : length(count)
csum = csum + count(idx);
cumuSum(idx) = csum;
end
HistEq = round(maxL/total * cumuSum);
HIm = zeros(H, W);
for idx = 1 : H
for idy = 1 : W
HIm(idx, idy) = HistEq(Img(idx, idy));
end
end
<<
>>

回答 (1 件)

xiao
xiao 2018 年 5 月 11 日
you can refer the function (histogram equalization) doc page and there are related references, then you can check the algorithm details.

カテゴリ

Help Center および File ExchangeHistograms についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by