dont match the result histogram equalization function with code
9 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
smn iraq
el 11 de Nov. de 2017
Comentada: smn iraq
el 13 de Nov. de 2017
dear sir why the result of code for do histogram equalization not match the result of function (histeq) . please help me
0 comentarios
Respuesta aceptada
Image Analyst
el 11 de Nov. de 2017
Not sure it matters since histogram equalization is such a lousy processing thing to do that it rarely get used anyway. It gives bad looking images and it's not even needed if you're going to do something like thresholding.
2 comentarios
Image Analyst
el 12 de Nov. de 2017
I have a variety of histogram equalization demos attached. There are a variety of ways to do it depending on how flat you want the final histogram to be. The simple version gives a non-flat histogram and merely reassigns the bins. This is the version you usually see out there, and is the worst, but simplest, method. In general they all give crappy looking images.
Más respuestas (1)
Jan
el 12 de Nov. de 2017
There could be many reasons. Unfortunately your code does not contain useful comments, such that the intention of the code must be guessed - not useful for a serious research.
Could the result differ from histeq due to the conversion to gray? rgb2gray is not unique, is it?
This is ugly:
sum=0;
for i=1:256
sum= sum +imghis(i);
cdf(i)=sum;
end
Do not use "sum" as name of a variable, because this shadows the builtin function with the same name. What about:
cdf = cumsum(imghis);
One line, much faster, lean and clean.
Redefining "norm" is a bad idea also, see above.
norm(count)=norm(count)/(len-cdfmin);
This is strange: You subtract the minimal value of cdf (which is the first value in every case, because cdf is the cumulative sum of non-negative elements) from the number of pixels of the image. Is this meaningful?
If your need a histogram equilization, use the workign and well tested histeq.
Ver también
Categorías
Más información sobre Histograms en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!