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.
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen

0 Kommentare
Antworten (1)
Andrey Kiselnikov
am 27 Aug. 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
0 Kommentare
Siehe auch
Kategorien
Mehr zu Histograms 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!