MATLAB: Recognize count white dots in grey background

image processingImage Processing Toolboximage segmentation

Hi, i' m a college student, and i need your help. I have some images of Microscope (with white points) on gery background and i need to recognize the count of dots. can someone recommend some links about those problems?
thanks!

Best Answer

Generally this should work. Use graythresh and im2bw to make a mask of white dots and then use bwconncomp to count them.
Check this example, here . pay attentention to the line that it counts the grains
cc = bwconncomp(bw, 4)
cc.NumObjects
Related Question