该算子计算得到region的圆度circularity,即与圆的相似程度(calculates the similarity of the input region with a circle)。
公式:C = F / (max^2 * pi)
其中,F为输入区域的面积,max为区域region的中心到边界的最大距离。
如图,检测圆形区域的circularity,并输出。
threshold (Image, Regions, , )
connection (Regions, ConnectedRegions)
opening_circle (ConnectedRegions, RegionOpening, 3)
select_shape (RegionOpening, SelectedRegions,, 'and', )
fill_up (SelectedRegions, RegionFillUp)
circularity (, )