counting of pixels having same same value
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
monika SINGH
am 8 Apr. 2019
Bearbeitet: monika SINGH
am 11 Apr. 2019
how to count pixels having same value
4 Kommentare
Manuel Schmidberger
am 8 Apr. 2019
Depending on that you wanna count (one or more values) you can use this:
VALS=[1,2...N] % Array of values 1xN
thermIm= % Matrix of thermal image values
noVals=sum(sum(ismember(thermIm,VALS)))
noVals is the amount of pixels in thermal image containing the values stored in array VALS
If you have just one value you can just use a combination of "length" and "find"
VAL= % Random number 1x1
noVals=length(find(thermIm==VAL))
Akzeptierte Antwort
Image Analyst
am 8 Apr. 2019
Bearbeitet: Image Analyst
am 8 Apr. 2019
You can take a histogram:
histObject = histogram(yourImage);
or
[counts, grayLevels] = imhist(grayImage);
1 Kommentar
Weitere Antworten (0)
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!