How can I find the intensity value which has the maximum number of pixels in the histogram? I'm using grayscale image. please I need a code ..
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Ahmad Yahya
il 15 Ott 2016
Commentato: Image Analyst
il 17 Ott 2016
how can find a function to solve this?
0 Commenti
Risposta accettata
Walter Roberson
il 16 Ott 2016
[counts, edges] = histcounts(YourIntensityImage(:), 0:255);
[maxcount, maxidx] = max(counts);
most_common_intensity = edges(maxidx);
14 Commenti
Image Analyst
il 17 Ott 2016
You might try a modified median filter, like my attached code.
Più risposte (1)
Image Analyst
il 16 Ott 2016
For a more general and somewhat different solution, you might look at the color frequency image: http://www.mathworks.com/matlabcentral/fileexchange/28164-color-frequency-image
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

