Filter löschen
Filter löschen

How to apply Cumulative Density Function Formula?

1 Ansicht (letzte 30 Tage)
Mustafa Uysal
Mustafa Uysal am 30 Okt. 2019
Kommentiert: Mustafa Uysal am 1 Nov. 2019
Hi,
I am trying to implement a research paper using MATLAB. i have to to apply this three formula, respectively.
son.pngPDa = zeros(1,256);
for i=1:256
PDa(i) = hCL(i) / (width*height); % width*height = total number of pixels
end
CDa = zeros(1,256); %create CDa in formula
CDa(1) = PDa(1) ;
for i=2:256
CDa(i) = PDa(i) + CDa(i-1);
end
value_after_enhancement = zeros(1,256);
for i=1:256
value_after_enhancement(i) = 255 * CDa(i);
end
But maximum value of CDa is 0.109. So, i see a dark image (maximum pixel value is 3) as a result. I couldn't understand where the problem is in my code. Can you help me, please?
  4 Kommentare
Jeff Miller
Jeff Miller am 1 Nov. 2019
Sorry, I cannot understand what you are trying to compute.
Mustafa Uysal
Mustafa Uysal am 1 Nov. 2019
Thank you for reply.
I am trying to implement an contrast enhancement algorithm using this paper: Research Paper

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Kategorien

Mehr zu Biomedical Imaging finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by