| Table of Contents / XLD / Transformations | Operators |
union_cocircular_contours_xld — Compute the union of contours that belong to the same circle.
union_cocircular_contours_xld(Contours : UnionContours : MaxArcAngleDiff, MaxArcOverlap, MaxTangentAngle, MaxDist, MaxRadiusDiff, MaxCenterDist, MergeSmallContours, Iterations : )
The operator union_cocircular_contours_xld merges all contours that belong to the same circle. The result is a set of contours in which contours on the same circle are connected.
The algorithm tries to merge contours by first fitting circles to each contour and then examining the result by means of radius, circle center, and gap on the circular arc. The list of contours is processed in sequence of increasing radii. Contours to which no circle could be fitted are optionally merged in a second pass.
The threshold parameters are used to define whether contours belong to the same circle. All thresholds must be fulfilled simultaneously for two contours to be merged. The parameter MaxArcAngleDiff defines the maximum angular distance in radians between the end point of one contour and the start point of a second contour on a circle. MaxArcOverlap denotes the maximum angle by which contours may overlap. MaxTangentAngle describes the maximum angle between circle tangents and the connecting line of two contours. MaxDist denotes the maximum absolute distance in pixels of the end and start points of two contours. MaxRadiusDiff is the maximum absolute difference of the radii of circles fitted to the contours. MaxCenterDist is the limit of the Euclidian distance of the circle centers.
If the parameter MergeSmallContours is set to 'true', contours without fitted circles are also merged. For a small contour to match, each point of the contour needs to have a distance to the circle center which differs from the radius by not more then MaxRadiusDiff. The angle between a line between two consecutive points on the contour and the circle tangent must be within MaxTangentAngle. Additionally, the condition for MaxDist must be fulfilled.
For each possible merge of two contours a cost is calculated by summing up the distances corresponding to the different threshold values. For comparability, the distances are scaled by the thresholds to a value between 0.0 and 1.0. If two or more contour start points match to the same end point of another contour, the contour with the lower cost is merged.
Merging of contours leads to new circle parameters. Therefore, an iteration can lead to further merges. The parameter Iterations controls the number of iterations. More than two iterations are seldom needed.
You should make sure that the input contours can be approximated by lines and circular arcs, for example by preprocessing them with split_contours_xld.
Note that already closed contours are not considered for a union anymore. That is, even if a contour and the already closed contour share the same circle, they are returned as separate contours.
Contours to be merged.
Merged contours.
Maximum angular distance of two circular arcs.
Default value: 0.5
Suggested values: 0.25, 0.5, 0.75, 1.0
Maximum overlap of two circular arcs.
Default value: 0.1
Suggested values: 0.0, 0.1, 0.2
Maximum angle between the connecting line and the tangents of circular arcs.
Default value: 0.2
Suggested values: 0.1, 0.2, 0.3, 0.4, 0.5
Maximum length of the gap between two circular arcs in pixels.
Default value: 30
Suggested values: 10, 30, 50, 70
Maximum radius difference of the circles fitted to two arcs.
Default value: 10
Suggested values: 10, 20, 30
Maximum center distance of the circles fitted to two arcs.
Default value: 10
Suggested values: 10, 20, 30
Determine whether small contours without fitted circles should also be merged.
Default value: 'true'
List of values: 'true', 'false'
Number of iterations.
Default value: 1
Suggested values: 1, 2
O(n^2) for n contours.
union_cocircular_contours_xld returns 2 (H_MSG_TRUE) if all parameters are correct.
split_contours_xld, select_contours_xld
union_collinear_contours_xld, union_cotangential_contours_xld, union_straight_contours_xld, union_adjacent_contours_xld, union_collinear_contours_ext_xld
Foundation
| Table of Contents / XLD / Transformations | Operators |
| HALCON Reference Manual 10.0.2 | Copyright © 1996-2011 MVTec Software GmbH |