| Table of Contents / Tools / Geometry | Operators |
distance_cc_min — Calculate the minimum distance between two contours.
distance_cc_min(Contour1, Contour2 : : Mode : DistanceMin)
distance_cc_min calculates the minimum distance between two contours Contour1 and Contour2. The minimum distance is returned in DistanceMin.
The parameter Mode sets the type of computing the distance. 'point_to_point' determines the distance of the closest contour points, 'fast_point_to_segment' calculates the distance of the line segments adjacent to these points, and 'point_to_segment' determines the actual minimum distance of the contour segments.
While 'point_to_point' and 'fast_point_to_segment' are efficient algorithms with a complexity of n*log(n), 'point_to_segment' has quadratic complexity and thus takes a longer time to execute, especially for contours with many line segments.
First input contour.
Second input contour.
Distance calculation mode.
Default value: 'fast_point_to_segment'
List of values: 'point_to_point', 'point_to_segment', 'fast_point_to_segment'
Minimum distance between the two 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_min(Cont1, Cont2, "fast_point_to_segment", &distance_min);
distance_cc_min returns 2 (H_MSG_TRUE).
distance_sc, distance_pc, distance_cc
Foundation
| Table of Contents / Tools / Geometry | Operators |
| HALCON Reference Manual 10.0.2 | Copyright © 1996-2011 MVTec Software GmbH |