Question about blob detection matlab algorithm
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
djim djim
el 14 de Oct. de 2018
Comentada: djim djim
el 18 de Oct. de 2018
|Hello every body, am newbie in Matlab and am actually interested in blob detection mecanism:
check the link below :
https://fr.mathworks.com/help/vision/deep-learning-semantic-segmentation-and-detection.html
it is said that:
*Blob analysis uses segmentation and blob properties to identify objects of interest*
can any body explain to me how this algorithm works (segmentation) and what blob properties are used?
any help will be highly appreciated |
0 comentarios
Respuesta aceptada
Image Analyst
el 14 de Oct. de 2018
3 comentarios
Image Analyst
el 17 de Oct. de 2018
1. Segmentation. First you segment the image to get a binary image, for example you could threshold your image at some brightness level. Or you could go through a lot of different steps but eventually you get to a point where you have an image that can be thresholded and produce a binary image.
2. Connected components labeling. Then it does a connected components analysis on the binary image to determine which "true" pixels are connected and belong to the same blob. In this way, every connected blob has its own ID label that uniquely identifies it. See this Wikipedia link for more explanation.
3. Analysis/measurement. Then it goes through a variety of algorithms to identify area, perimeter, or whatever you asked for. The exact algorithm depends on what measurement is being made.
Más respuestas (0)
Ver también
Categorías
Más información sobre Computer Vision with Simulink en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!