Regionprops vs. imfindcircles

6 次查看(过去 30 天)
Hello, I want to detect circles in a live video and I manage to do that with a while-loop. When using imfindcircles(), the circles' center are in order of strength, the most likely circles is the first one and so on. I am wondering how regionprops outputs its regions. It finds more circles than I need, so I would like to choose which circles to use further in my code.
Short one: regionprops() finds circles, I want the 3 strongest circles. Is this possible with regionprops()?

回答(1 个)

Harikrishnan Balachandran Nair
From my understanding, you want to know if 'regionprops' can be used to extract the strongest three circles from a frame.
The 'regionprops' function returns , as a structure or table, the measure for the set of specified properties, for all the connected components in the binary image.It can also return the 'PixelList' for each connected component, centroid, boundingbox etc .You can sort the structure with respect to the measure of property of interest, and plot the pixels in the corresponding 'n' objects which have the highest value for the specified property. Alternatively, you can use the 'bwpropfilt' function to directly extract the 'n' objects from the binary image, which have the largest values for the specified attribute. The following line of code does the same.
bw2=bwpropfilt(bw,attrib,n);

类别

Help CenterFile Exchange 中查找有关 Image Segmentation and Analysis 的更多信息

产品


版本

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by