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.
이전 댓글 표시
답변 (1개)
Andrey Kiselnikov
2019년 8월 27일
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
카테고리
도움말 센터 및 File Exchange에서 Histograms에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
