PIXEL counting at grey scaled picture
조회 수: 1 (최근 30일)
이전 댓글 표시
I have a picture which is greyscaled and i want to count the number of pixels from 200-255( the bright ones) from the histogram.Any ideas about the coding or other way? Thank you!
댓글 수: 0
채택된 답변
KALYAN ACHARJYA
2022년 1월 24일
편집: KALYAN ACHARJYA
2022년 1월 24일
%Using Histogram (Considering 256 Levels)
[counts,binLocations]=imhist(grayImage);
pix_counts=sum(counts(200:end))
##
%% 2nd Method, easier
high_pix=grayImage>199;
pix_counts=sum(high_pix(:))
추가 답변 (1개)
Image Analyst
2022년 1월 24일
And yet another option:
brightRegions = grayImage >= 200;
numBrightPixels = nnz(brightRegions);
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Histograms에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!