| Table of Contents / Tools / Geometry | Operators |
distance_cc — Calculate the distance between two contours.
distance_cc(Contour1, Contour2 : : Mode : DistanceMin, DistanceMax)
The operator distance_cc calculates the minimum and maximum distance between the base points of two contours ( Contour1 and Contour2). The parameters DistanceMin and DistanceMax contain the resulting distance.
The parameter Mode sets the type of computing the distance: 'point_to_point' only determines the minimum and maximum distance between the base points of the contours. This results in faster algorithm but may lead to inaccurate minimum distances. In contrast, 'point_to_segment' determines the actual minimum distance of the contour segments.
In both cases, the search algorithm has a quadratic complexitity (n*n). If only the minimum distance is required, the operator distance_cc_min can be used alternatively since it offers algorithms with a complexity of 'n*log(n)'.
First input contour.
Second input contour.
Distance calculation mode.
Default value: 'point_to_point'
List of values: 'point_to_point', 'point_to_segment'
Minimum distance between both contours.
Maximum distance between both contours.
gen_contour_polygon_rounded_xld(Cont1, [0,100,100,0,0], [0,0,100,100,0],
[50,50,50,50,50], 0.5);
gen_contour_polygon_rounded_xld(Cont2, [41,91,91,41,41], [41,41,91,91,41],
[25,25,25,25,25], 0.5);
distance_cc(Cont1, Cont2, 'point_to_point', &distance_min, &distance_max);
distance_cc returns 2 (H_MSG_TRUE).
distance_sc, distance_pc, distance_cc_min
Foundation
| Table of Contents / Tools / Geometry | Operators |
| HALCON Reference Manual 10.0.2 | Copyright © 1996-2011 MVTec Software GmbH |