HALCON Reference Manual 10.0.2
Table of Contents / XLD / Features ClassesClassesClasses | | | Operators

area_center_xldarea_center_xldarea_center_xldAreaCenterXldAreaCenterXld (Operator)

Name

area_center_xldarea_center_xldarea_center_xldAreaCenterXldAreaCenterXld — Area and center of gravity (centroid) of contours and polygons.

Signature

area_center_xld(XLD : : : Area, Row, Column, PointOrder)

Herror area_center_xld(const Hobject XLD, double* Area, double* Row, double* Column, char* PointOrder)

Herror T_area_center_xld(const Hobject XLD, Htuple* Area, Htuple* Row, Htuple* Column, Htuple* PointOrder)

Herror area_center_xld(Hobject XLD, double* Area, double* Row, double* Column, char* PointOrder)

Herror area_center_xld(Hobject XLD, HTuple* Area, HTuple* Row, HTuple* Column, HTuple* PointOrder)

double HXLD::AreaCenterXld(double* Row, double* Column, char* PointOrder) const

HTuple HXLDArray::AreaCenterXld(HTuple* Row, HTuple* Column, HTuple* PointOrder) const

void HOperatorSetX.AreaCenterXld(
[in] IHUntypedObjectX* XLD, [out] VARIANT* Area, [out] VARIANT* Row, [out] VARIANT* Column, [out] VARIANT* PointOrder)

VARIANT HXLDX.AreaCenterXld(
[out] VARIANT* Row, [out] VARIANT* Column, [out] VARIANT* PointOrder)

VARIANT HXLDContX.AreaCenterXld(
[out] VARIANT* Row, [out] VARIANT* Column, [out] VARIANT* PointOrder)

VARIANT HXLDPolyX.AreaCenterXld(
[out] VARIANT* Row, [out] VARIANT* Column, [out] VARIANT* PointOrder)

VARIANT HXLDParaX.AreaCenterXld(
[out] VARIANT* Row, [out] VARIANT* Column, [out] VARIANT* PointOrder)

VARIANT HXLDModParaX.AreaCenterXld(
[out] VARIANT* Row, [out] VARIANT* Column, [out] VARIANT* PointOrder)

VARIANT HXLDExtParaX.AreaCenterXld(
[out] VARIANT* Row, [out] VARIANT* Column, [out] VARIANT* PointOrder)

static void HOperatorSet.AreaCenterXld(HObject XLD, out HTuple area, out HTuple row, out HTuple column, out HTuple pointOrder)

HTuple HXLD.AreaCenterXld(out HTuple row, out HTuple column, out HTuple pointOrder)

double HXLD.AreaCenterXld(out double row, out double column, out string pointOrder)

Description

area_center_xldarea_center_xldarea_center_xldAreaCenterXldAreaCenterXld calculates the area and center of gravity (centroid) of the regions enclosed by the contours or polygons XLDXLDXLDXLDXLD as well as the order of the points along the boundary. The area and centroid are computed by applying Green's theorem using only the points on the contour or polygon, i.e., no region is generated explicitly for the purpose of calculating the features. If the points are arranged counterclockwise (i.e., in a positive mathematical sense) in the contour or polygon, PointOrderPointOrderPointOrderPointOrderpointOrder will be 'positive'"positive""positive""positive""positive". It is assumed that the contours or polygons are closed. If this is not the case area_center_xldarea_center_xldarea_center_xldAreaCenterXldAreaCenterXld will artificially close the contour respectively polygon.

It should be noted that area_center_xldarea_center_xldarea_center_xldAreaCenterXldAreaCenterXld only returns useful results if the contour or polygon encloses a region in the plane. In particular, the contour or polygon must not intersect itself. This is particularly important if open contours or polygons are passed because they are closed automatically, which can produce a self-intersection. To test whether the contours or polygons intersect themselves, test_self_intersection_xldtest_self_intersection_xldtest_self_intersection_xldTestSelfIntersectionXldTestSelfIntersectionXld can be used. If the contour or polygon intersects itself, a useful value for the center of gravity can be calculated with area_center_points_xldarea_center_points_xldarea_center_points_xldAreaCenterPointsXldAreaCenterPointsXld.

If more than one contour or polygon is passed, the results are stored in tuples in the same order as the respective contours or polygons in XLDXLDXLDXLDXLD.

Parallelization

Parameters

XLDXLDXLDXLDXLD (input_object)  xld(-array) objectHXLDHXLDHXLDXHobject

Contours or polygons to be examined.

AreaAreaAreaAreaarea (output_control)  real(-array) HTupleHTupleVARIANTHtuple (real) (double) (double) (double) (double)

Area enclosed by the contour or polygon.

RowRowRowRowrow (output_control)  point.y(-array) HTupleHTupleVARIANTHtuple (real) (double) (double) (double) (double)

Row coordinate of the centroid.

ColumnColumnColumnColumncolumn (output_control)  point.x(-array) HTupleHTupleVARIANTHtuple (real) (double) (double) (double) (double)

Column coordinate of the centroid.

PointOrderPointOrderPointOrderPointOrderpointOrder (output_control)  string(-array) HTupleHTupleVARIANTHtuple (string) (string) (char*) (BSTR) (char*)

point order along the boundary ('positive'/'negative').

Complexity

Let n be the number of points of the contour or polygon. Then the run time is O(n).

Result

area_center_xldarea_center_xldarea_center_xldAreaCenterXldAreaCenterXld returns 2 (H_MSG_TRUE) if the input is not empty. If the input is empty the behavior can be set via set_system(::'no_object_result',<Result>:)set_system("no_object_result",<Result>)set_system("no_object_result",<Result>)SetSystem("no_object_result",<Result>)SetSystem("no_object_result",<Result>). If necessary, an exception is raised.

Possible Predecessors

gen_contours_skeleton_xldgen_contours_skeleton_xldgen_contours_skeleton_xldGenContoursSkeletonXldGenContoursSkeletonXld, smooth_contours_xldsmooth_contours_xldsmooth_contours_xldSmoothContoursXldSmoothContoursXld, gen_polygons_xldgen_polygons_xldgen_polygons_xldGenPolygonsXldGenPolygonsXld

Alternatives

area_center_points_xldarea_center_points_xldarea_center_points_xldAreaCenterPointsXldAreaCenterPointsXld

See also

moments_xldmoments_xldmoments_xldMomentsXldMomentsXld, moments_any_xldmoments_any_xldmoments_any_xldMomentsAnyXldMomentsAnyXld, area_centerarea_centerarea_centerAreaCenterAreaCenter, moments_region_2ndmoments_region_2ndmoments_region_2ndMomentsRegion2ndMomentsRegion2nd

Module

Foundation


Table of Contents / XLD / Features ClassesClassesClasses | | | Operators
HALCON Reference Manual 10.0.2 Copyright © 1996-2011 MVTec Software GmbH