counting of pixels having same same value
Show older comments
how to count pixels having same value
4 Comments
Adam
on 8 Apr 2019
sum( myImage == someValue );
in the absence of any substantive information on what you are counting them in!
monika SINGH
on 8 Apr 2019
Manuel Schmidberger
on 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))
Image Analyst
on 8 Apr 2019
Please put Answers down in the Answer section.
Accepted Answer
More Answers (0)
Categories
Find more on Contrast Adjustment in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!