How can i count black spots in an image?

12 visualizaciones (últimos 30 días)
Lucas Echeverz
Lucas Echeverz el 12 de Nov. de 2015
Editada: Image Analyst el 4 de Jun. de 2023
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.

Respuesta aceptada

Image Analyst
Image Analyst el 12 de Nov. de 2015
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 comentarios
Image Analyst
Image Analyst el 3 de Jun. de 2023
Editada: Image Analyst el 4 de Jun. de 2023
@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.
Abdur  Rahman
Abdur Rahman el 3 de Jun. de 2023
Okay thanks

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Animation en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by