How can i count black spots in an image?

12 次查看(过去 30 天)
I cannot figure out how to count the black spots on the image that I have got after some processing applied. Below you can find attached two images that I want to count that marks. The ideal will be to count the marks and display an alert or something like this that says "Number of circles: #" I used regionprops with any results.

采纳的回答

Image Analyst
Image Analyst 2015-11-12
regionprops() works with white blobs, not black blobs. So just invert. But you can actually do the count with bwlabel():
[labeledImage, numberOfBlobs] = bwlabel(~binaryImage);
  3 个评论
Image Analyst
Image Analyst 2023-6-3
编辑:Image Analyst 2023-6-4
@Abdur Rahman search the image processing literature for published papers on animal counting:
For example here is one paper:
Real-time recognition of cattle using animal biometrics,
RealTimeIP(13), No. 3, September 2017, pp. 505-526.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Animation 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by