I am trying to run the image histogram equalization code but getting some errors. What's wrong with the coding? Please give some corrected code.
Afficher commentaires plus anciens
Réponses (1)
Andrey Kiselnikov
le 27 Août 2019
Try this example:
image = imread('test.jpg');
[counts,bins] = imhist(image);
stem(bins,counts);
ps. if my help was useful please mark answer as accepted
Catégories
En savoir plus sur Histograms dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
