ClassesClasses | | Operators

projective_trans_contour_xldT_projective_trans_contour_xldProjectiveTransContourXldProjectiveTransContourXld (Operator)

Name

projective_trans_contour_xldT_projective_trans_contour_xldProjectiveTransContourXldProjectiveTransContourXld — Apply a projective transformation to an XLD contour.

Signature

projective_trans_contour_xld(Contours : ContoursProjTrans : HomMat2D : )

Herror T_projective_trans_contour_xld(const Hobject Contours, Hobject* ContoursProjTrans, const Htuple HomMat2D)

void ProjectiveTransContourXld(const HObject& Contours, HObject* ContoursProjTrans, const HTuple& HomMat2D)

HXLDCont HXLDCont::ProjectiveTransContourXld(const HHomMat2D& HomMat2D) const

HXLDCont HHomMat2D::ProjectiveTransContourXld(const HXLDCont& Contours) const

static void HOperatorSet.ProjectiveTransContourXld(HObject contours, out HObject contoursProjTrans, HTuple homMat2D)

HXLDCont HXLDCont.ProjectiveTransContourXld(HHomMat2D homMat2D)

HXLDCont HHomMat2D.ProjectiveTransContourXld(HXLDCont contours)

Description

projective_trans_contour_xldprojective_trans_contour_xldProjectiveTransContourXldProjectiveTransContourXldProjectiveTransContourXld applies the projective transformation specified by the homogeneous matrix HomMat2DHomMat2DHomMat2DHomMat2DhomMat2D on the contours in ContoursContoursContoursContourscontours and returns the transformed contours in ContoursProjTransContoursProjTransContoursProjTransContoursProjTranscontoursProjTrans.

For creation and interpretation details of this matrix see also projective_trans_imageprojective_trans_imageProjectiveTransImageProjectiveTransImageProjectiveTransImage.

Attention

The used coordinate system is the same as in affine_trans_pixelaffine_trans_pixelAffineTransPixelAffineTransPixelAffineTransPixel. This means that in fact not HomMat2DHomMat2DHomMat2DHomMat2DhomMat2D is applied but a modified version. Therefore, applying projective_trans_contour_xldprojective_trans_contour_xldProjectiveTransContourXldProjectiveTransContourXldProjectiveTransContourXld corresponds to the following chain of transformations, which is applied to each point of the contour (input and output pixels as homogeneous vectors):

As an effect, you might get unexpected results when creating projective transformations based on coordinates that are derived from the contour, e.g., by operators like area_center_xldarea_center_xldAreaCenterXldAreaCenterXldAreaCenterXld. For example, if you use this operator to calculate the center of gravity of a rotationally symmetric XLD contour and then rotate the contour around this point using hom_mat2d_rotatehom_mat2d_rotateHomMat2dRotateHomMat2dRotateHomMat2dRotate, the resulting contour will not lie on the original one. In such a case, you can compensate this effect by applying the following translations to HomMat2DHomMat2DHomMat2DHomMat2DhomMat2D before using it in projective_trans_contour_xldprojective_trans_contour_xldProjectiveTransContourXldProjectiveTransContourXldProjectiveTransContourXld:

  hom_mat2d_translate(HomMat2D, 0.5, 0.5, HomMat2DTmp)
  hom_mat2d_translate_local(HomMat2DTmp, -0.5, -0.5, HomMat2DAdapted)
  projective_trans_contour_xld(Contours, ContoursAffineTrans, HomMat2DAdapted)

For an explanation of the different 2D coordinate systems used in HALCON, see the introduction of chapter Transformations / 2D Transformations.

Execution Information

Parameters

ContoursContoursContoursContourscontours (input_object)  xld_cont(-array) objectHXLDContHXLDContHobject

Input contours.

ContoursProjTransContoursProjTransContoursProjTransContoursProjTranscontoursProjTrans (output_object)  xld_cont(-array) objectHXLDContHXLDContHobject *

Output contours.

HomMat2DHomMat2DHomMat2DHomMat2DhomMat2D (input_control)  hom_mat2d HHomMat2D, HTupleHTupleHtuple (real) (double) (double) (double)

Homogeneous projective transformation matrix.

Possible Predecessors

vector_to_proj_hom_mat2dvector_to_proj_hom_mat2dVectorToProjHomMat2dVectorToProjHomMat2dVectorToProjHomMat2d, hom_vector_to_proj_hom_mat2dhom_vector_to_proj_hom_mat2dHomVectorToProjHomMat2dHomVectorToProjHomMat2dHomVectorToProjHomMat2d, proj_match_points_ransacproj_match_points_ransacProjMatchPointsRansacProjMatchPointsRansacProjMatchPointsRansac, proj_match_points_ransac_guidedproj_match_points_ransac_guidedProjMatchPointsRansacGuidedProjMatchPointsRansacGuidedProjMatchPointsRansacGuided, hom_mat3d_projecthom_mat3d_projectHomMat3dProjectHomMat3dProjectHomMat3dProject

See also

projective_trans_imageprojective_trans_imageProjectiveTransImageProjectiveTransImageProjectiveTransImage, projective_trans_image_sizeprojective_trans_image_sizeProjectiveTransImageSizeProjectiveTransImageSizeProjectiveTransImageSize, projective_trans_regionprojective_trans_regionProjectiveTransRegionProjectiveTransRegionProjectiveTransRegion, projective_trans_point_2dprojective_trans_point_2dProjectiveTransPoint2dProjectiveTransPoint2dProjectiveTransPoint2d, projective_trans_pixelprojective_trans_pixelProjectiveTransPixelProjectiveTransPixelProjectiveTransPixel

Module

Foundation


ClassesClasses | | Operators