Question about blob detection matlab algorithm

1 次查看(过去 30 天)
|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 |

采纳的回答

Image Analyst
Image Analyst 2018-10-14
  3 个评论
Image Analyst
Image Analyst 2018-10-17
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.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Computer Vision with Simulink 的更多信息

产品


版本

R2013a

Community Treasure Hunt

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

Start Hunting!

Translated by