union_straight_contours_xldunion_straight_contours_xldUnionStraightContoursXldUnionStraightContoursXld (Operator)

Name

union_straight_contours_xldunion_straight_contours_xldUnionStraightContoursXldUnionStraightContoursXld — Compute the union of neighboring straight contours that have a similar direction.

Signature

union_straight_contours_xld(Contours : UnionContours : MaxDist, MaxDiff, Percent, Mode, Iterations : )

Herror union_straight_contours_xld(const Hobject Contours, Hobject* UnionContours, double MaxDist, double MaxDiff, double Percent, const char* Mode, const char* Iterations)

Herror T_union_straight_contours_xld(const Hobject Contours, Hobject* UnionContours, const Htuple MaxDist, const Htuple MaxDiff, const Htuple Percent, const Htuple Mode, const Htuple Iterations)

void UnionStraightContoursXld(const HObject& Contours, HObject* UnionContours, const HTuple& MaxDist, const HTuple& MaxDiff, const HTuple& Percent, const HTuple& Mode, const HTuple& Iterations)

HXLDCont HXLDCont::UnionStraightContoursXld(double MaxDist, double MaxDiff, double Percent, const HString& Mode, const HTuple& Iterations) const

HXLDCont HXLDCont::UnionStraightContoursXld(double MaxDist, double MaxDiff, double Percent, const HString& Mode, const HString& Iterations) const

HXLDCont HXLDCont::UnionStraightContoursXld(double MaxDist, double MaxDiff, double Percent, const char* Mode, const char* Iterations) const

HXLDCont HXLDCont::UnionStraightContoursXld(double MaxDist, double MaxDiff, double Percent, const wchar_t* Mode, const wchar_t* Iterations) const   (Windows only)

static void HOperatorSet.UnionStraightContoursXld(HObject contours, out HObject unionContours, HTuple maxDist, HTuple maxDiff, HTuple percent, HTuple mode, HTuple iterations)

HXLDCont HXLDCont.UnionStraightContoursXld(double maxDist, double maxDiff, double percent, string mode, HTuple iterations)

HXLDCont HXLDCont.UnionStraightContoursXld(double maxDist, double maxDiff, double percent, string mode, string iterations)

Description

union_straight_contours_xldunion_straight_contours_xldUnionStraightContoursXldUnionStraightContoursXldUnionStraightContoursXld merges neighboring XLD contours ContoursContoursContoursContourscontours if certain criteria are fulfilled. At each iteration, at most two contours that fulfill the given criteria are merged. The parameter IterationsIterationsIterationsIterationsiterations controls how often this step is executed.

Two contours are merged if the shortest distance between their end points (end points are the projections of the contours' first and last points onto its regression line) is smaller than MaxDistMaxDistMaxDistMaxDistmaxDist, and if the difference in direction (i.e., the regression lines' direction) is smaller than MaxDiffMaxDiffMaxDiffMaxDiffmaxDiff (radians).

image/svg+xml a
image/svg+xml a

If only one of the criteria is fulfilled, the decision on merging can be influenced by the weighting factor PercentPercentPercentPercentpercent, which allows the exceeding of one limit to be balanced by the other value remaining below the limit by the same amount. The end point distance is weighted by PercentPercentPercentPercentpercent, while the directional difference is weighted by 100 - PercentPercentPercentPercentpercent.

This means that two contours are merged if they fulfill the following condition:

If, for example, two contours have an end point distance of 5.0 and a directional difference of 0.5 (with the limits chosen being MaxDistMaxDistMaxDistMaxDistmaxDist = 4.0 and MaxDiffMaxDiffMaxDiffMaxDiffmaxDiff = 0.625), both values differ from the limits by 25%. By choosing PercentPercentPercentPercentpercent = 60%, the larger end point distance is weighted more than the smaller directional difference, and thus the contours are not merged. Contrary, if PercentPercentPercentPercentpercent = 40% is chosen, the contours are merged.

For PercentPercentPercentPercentpercent = 100%, only the end point distance is taken into account, while for PercentPercentPercentPercentpercent = 0% only the difference of direction is used. If PercentPercentPercentPercentpercent = 50% both criteria are equally valid.

In case there are parallel contours, there is a danger of merging neighboring contours. If this is to be avoided, ModeModeModeModemode = 'noparallel' has to be chosen, while otherwise ModeModeModeModemode = 'paralleltoo' suffices. For ModeModeModeModemode = 'every', contours are merged unconditionally. All other parameters have no influence in this case.

The parameters of the regression line are calculated anew for merged contours.

Attention

Before the contour parameters can be returned by get_regress_params_xldget_regress_params_xldGetRegressParamsXldGetRegressParamsXldGetRegressParamsXld, the parameters of the regression line to the contour must be calculated by calling regress_contours_xldregress_contours_xldRegressContoursXldRegressContoursXldRegressContoursXld.

Execution Information

Parameters

ContoursContoursContoursContourscontours (input_object)  xld_cont-array objectHXLDContHXLDContHobject

Input XLD contours.

UnionContoursUnionContoursUnionContoursUnionContoursunionContours (output_object)  xld_cont-array objectHXLDContHXLDContHobject *

Output XLD contours.

MaxDistMaxDistMaxDistMaxDistmaxDist (input_control)  real HTupleHTupleHtuple (real) (double) (double) (double)

Maximum distance of the contours' endpoints.

Default value: 5.0

MaxDiffMaxDiffMaxDiffMaxDiffmaxDiff (input_control)  angle.rad HTupleHTupleHtuple (real) (double) (double) (double)

Maximum difference in direction.

Default value: 0.5

PercentPercentPercentPercentpercent (input_control)  real HTupleHTupleHtuple (real) (double) (double) (double)

Weighting factor for the two selection criteria.

Default value: 50.0

ModeModeModeModemode (input_control)  string HTupleHTupleHtuple (string) (string) (HString) (char*)

Should parallel contours be taken into account?

Default value: 'noparallel' "noparallel" "noparallel" "noparallel" "noparallel"

List of values: 'every'"every""every""every""every", 'noparallel'"noparallel""noparallel""noparallel""noparallel", 'paralleltoo'"paralleltoo""paralleltoo""paralleltoo""paralleltoo"

IterationsIterationsIterationsIterationsiterations (input_control)  string HTupleHTupleHtuple (string / integer) (string / int / long) (HString / Hlong) (char* / Hlong)

Number of iterations or 'maximum'.

Default value: 'maximum' "maximum" "maximum" "maximum" "maximum"

Suggested values: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 'maximum'"maximum""maximum""maximum""maximum"

Typical range of values: 1 ≤ Iterations Iterations Iterations Iterations iterations ≤ 500 (lin)

Minimum increment: 1

Recommended increment: 1

Possible Predecessors

regress_contours_xldregress_contours_xldRegressContoursXldRegressContoursXldRegressContoursXld

Alternatives

union_collinear_contours_xldunion_collinear_contours_xldUnionCollinearContoursXldUnionCollinearContoursXldUnionCollinearContoursXld, union_collinear_contours_ext_xldunion_collinear_contours_ext_xldUnionCollinearContoursExtXldUnionCollinearContoursExtXldUnionCollinearContoursExtXld, union_cocircular_contours_xldunion_cocircular_contours_xldUnionCocircularContoursXldUnionCocircularContoursXldUnionCocircularContoursXld, union_cotangential_contours_xldunion_cotangential_contours_xldUnionCotangentialContoursXldUnionCotangentialContoursXldUnionCotangentialContoursXld, union_adjacent_contours_xldunion_adjacent_contours_xldUnionAdjacentContoursXldUnionAdjacentContoursXldUnionAdjacentContoursXld

See also

fit_line_contour_xldfit_line_contour_xldFitLineContourXldFitLineContourXldFitLineContourXld, get_contour_xldget_contour_xldGetContourXldGetContourXldGetContourXld, get_contour_attrib_xldget_contour_attrib_xldGetContourAttribXldGetContourAttribXldGetContourAttribXld, gen_contours_skeleton_xldgen_contours_skeleton_xldGenContoursSkeletonXldGenContoursSkeletonXldGenContoursSkeletonXld, lines_gausslines_gaussLinesGaussLinesGaussLinesGauss, lines_facetlines_facetLinesFacetLinesFacetLinesFacet, edges_sub_pixedges_sub_pixEdgesSubPixEdgesSubPixEdgesSubPix, get_regress_params_xldget_regress_params_xldGetRegressParamsXldGetRegressParamsXldGetRegressParamsXld, get_contour_global_attrib_xldget_contour_global_attrib_xldGetContourGlobalAttribXldGetContourGlobalAttribXldGetContourGlobalAttribXld, query_contour_global_attribs_xldquery_contour_global_attribs_xldQueryContourGlobalAttribsXldQueryContourGlobalAttribsXldQueryContourGlobalAttribsXld

Module

Foundation