I have a RGB image which i converted into HSV color model. Then I have extracted the V- component. I draw simple histogram of this V-component. Now i wanted to divide this created histogram in such 8 part where each partition should have the same ent
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
sumit kumar
am 15 Nov. 2016
Kommentiert: Im_possible_woman
am 15 Apr. 2018
I have a RGB image which i converted into HSV color model. Then I have extracted the V- component. I draw simple histogram of this V-component. Now i wanted to divide this created histogram in such 8 part where each partition should have the same entropy. Or if not 8 then number of partition must be same.
2 Kommentare
Im_possible_woman
am 15 Apr. 2018
Hello @sumit kumar, could you please share the codes of RGB image which is converted into HSV color model. Then have extracted the V- component? I really hope that you can help me to share the codes and respond me.
Akzeptierte Antwort
Image Analyst
am 15 Nov. 2016
Compute the histogram. Then compute the entropy in each bin: sum(p*log(p)). Then compute the CDF of the entropy array using cumsum(). Then split it at the 1/8, 2/8, 3/8, etc. points to find out what gray levels give you the eight part splitting that you seek.
2 Kommentare
Weitere Antworten (1)
Walter Roberson
am 15 Nov. 2016
3 Kommentare
Walter Roberson
am 15 Nov. 2016
Though I am not sure what you mean by "have the same entropy" with respect to a portion of a histogram?
Siehe auch
Kategorien
Mehr zu Histograms finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!