Skip to content

hom_mat2d_reflectHomMat2dReflectHomMat2dReflecthom_mat2d_reflectT_hom_mat2d_reflect🔗

Short description🔗

hom_mat2d_reflectHomMat2dReflectHomMat2dReflecthom_mat2d_reflectT_hom_mat2d_reflect — Add a reflection to a homogeneous 2D transformation matrix.

Signature🔗

hom_mat2d_reflect( hom_mat2d HomMat2D, point.x Px, point.y Py, point.x Qx, point.y Qy, out hom_mat2d HomMat2DReflect )void HomMat2dReflect( const HTuple& HomMat2D, const HTuple& Px, const HTuple& Py, const HTuple& Qx, const HTuple& Qy, HTuple* HomMat2DReflect )static void HOperatorSet.HomMat2dReflect( HTuple homMat2D, HTuple px, HTuple py, HTuple qx, HTuple qy, out HTuple homMat2DReflect )def hom_mat2d_reflect( hom_mat_2d: Sequence[float], px: Union[float, int], py: Union[float, int], qx: Union[float, int], qy: Union[float, int] ) -> Sequence[float]

Herror T_hom_mat2d_reflect( const Htuple HomMat2D, const Htuple Px, const Htuple Py, const Htuple Qx, const Htuple Qy, Htuple* HomMat2DReflect )

HHomMat2D HHomMat2D::HomMat2dReflect( const HTuple& Px, const HTuple& Py, const HTuple& Qx, const HTuple& Qy ) const

HHomMat2D HHomMat2D::HomMat2dReflect( double Px, double Py, double Qx, double Qy ) const

HHomMat2D HHomMat2D.HomMat2dReflect( HTuple px, HTuple py, HTuple qx, HTuple qy )

HHomMat2D HHomMat2D.HomMat2dReflect( double px, double py, double qx, double qy )

Description🔗

hom_mat2d_reflectHomMat2dReflect adds a reflection about the axis given by the two points (Pxpxpx,Pypypy) and (Qxqxqx,Qyqyqy) to the homogeneous 2D transformation matrix HomMat2DhomMat2Dhom_mat_2d and returns the resulting matrix in HomMat2DReflecthomMat2DReflecthom_mat_2dreflect. The reflection is described by a 2×2 reflection matrix M. It is performed relative to the global (i.e., fixed) coordinate system; this corresponds to the following chain of transformation matrices:

\[\begin{eqnarray*} \textrm{HomMat2DReflect} = \mvHomMatrixTwoDRotTrans{\mvReflectionMatrixVar{}{}} {\mvVectorTwoDPlain{0}{0}} \cdot \textrm{HomMat2D} \qquad \mvReflectionMatrixVar{}{} \: = \: \mvMatrixVar{I} - \frac{2}{v^T v} v v^T \end{eqnarray*}\]

where \(v = (\textrm{Py}-\textrm{Qy},\textrm{Qx}-\textrm{Px})^T\) is the normal vector to the axis.

The axis \((\textrm{Px},\textrm{Py})-(\textrm{Qx},\textrm{Qy})\) is fixed in the transformation, i.e., the points on the axis remain unchanged when transformed using HomMat2DReflecthomMat2DReflecthom_mat_2dreflect. To obtain this behavior, first a translation is added to the input transformation matrix that moves the axis onto the origin of the global coordinate system. Then, the reflection is added, and finally a translation that moves the axis back to its original position. This corresponds to the following chain of transformations:

\[\begin{eqnarray*} \textrm{HomMat2DReflect} = \mvHomMatrixTwoDElements{1 & 0 & + \textrm{Px} \\ 0 & 1 & + \textrm{Py}} \cdot \mvHomMatrixTwoDRotTrans{\mvReflectionMatrixVar{}{}} {\mvVectorTwoDPlain{0}{0}} \cdot \mvHomMatrixTwoDElements{1 & 0 & - \textrm{Px} \\ 0 & 1 & - \textrm{Py}} \cdot \textrm{HomMat2D} \end{eqnarray*}\]

To perform the transformation in the local coordinate system, i.e., the one described by HomMat2DhomMat2Dhom_mat_2d, use hom_mat2d_reflect_localHomMat2dReflectLocal.

Attention🔗

It should be noted that homogeneous transformation matrices refer to a general right-handed mathematical coordinate system. If a homogeneous transformation matrix is used to transform images, regions, XLD contours, or any other data that has been extracted from images, the row coordinates of the transformation must be passed in the x coordinates, while the column coordinates must be passed in the y coordinates. Consequently, the order of passing row and column coordinates follows the usual order (Rowrowrow,Columncolumncolumn). This convention is essential to obtain a right-handed coordinate system for the transformation of iconic data, and consequently to ensure in particular that rotations are performed in the correct mathematical direction.

Note that homogeneous matrices are stored row-by-row as a tuple; the last row is usually not stored because it is identical for all homogeneous matrices that describe an affine transformation. For example, the homogeneous matrix \(\mvHomMatrixTwoDElements{ra & rb & tc \\ rd & re & tf}\) is stored as the tuple [ra, rb, tc, rd, re, tf]. However, it is also possible to process full \(\times\)3 matrices, which represent a projective 2D transformation.

Execution information🔗

Execution information
  • Multithreading type: reentrant (runs in parallel with non-exclusive operators).

  • Multithreading scope: global (may be called from any thread).

  • Processed without parallelization.

Parameters🔗

HomMat2DhomMat2Dhom_mat_2d (input_control) hom_mat2d → (real)HTuple (double)HHomMat2D, HTuple (double)Sequence[float]Htuple (double)

Input transformation matrix.

Pxpxpx (input_control) point.x → (real / integer)HTuple (double / Hlong)HTuple (double / int / long)Union[float, int]Htuple (double / Hlong)

First point of the axis (x coordinate).

Default: 00
Suggested values: 0, 16, 32, 64, 128, 256, 512, 10240, 16, 32, 64, 128, 256, 512, 1024

Pypypy (input_control) point.y → (real / integer)HTuple (double / Hlong)HTuple (double / int / long)Union[float, int]Htuple (double / Hlong)

First point of the axis (y coordinate).

Default: 00
Suggested values: 0, 16, 32, 64, 128, 256, 512, 10240, 16, 32, 64, 128, 256, 512, 1024

Qxqxqx (input_control) point.x → (real / integer)HTuple (double / Hlong)HTuple (double / int / long)Union[float, int]Htuple (double / Hlong)

Second point of the axis (x coordinate).

Default: 1616
Suggested values: 0, 16, 32, 64, 128, 256, 512, 10240, 16, 32, 64, 128, 256, 512, 1024

Qyqyqy (input_control) point.y → (real / integer)HTuple (double / Hlong)HTuple (double / int / long)Union[float, int]Htuple (double / Hlong)

Second point of the axis (y coordinate).

Default: 3232
Suggested values: 0, 16, 32, 64, 128, 256, 512, 10240, 16, 32, 64, 128, 256, 512, 1024

HomMat2DReflecthomMat2DReflecthom_mat_2dreflect (output_control) hom_mat2d → (real)HTuple (double)HHomMat2D, HTuple (double)Sequence[float]Htuple (double)

Output transformation matrix.

Result🔗

hom_mat2d_reflectHomMat2dReflect returns 2 (H_MSG_TRUE) if both points on the axis are not identical. If necessary, an exception is raised.

Combinations with other operators🔗

Combinations

Possible predecessors

hom_mat2d_identityHomMat2dIdentity, hom_mat2d_translateHomMat2dTranslate, hom_mat2d_scaleHomMat2dScale, hom_mat2d_rotateHomMat2dRotate, hom_mat2d_slantHomMat2dSlant, hom_mat2d_reflectHomMat2dReflect

Possible successors

hom_mat2d_translateHomMat2dTranslate, hom_mat2d_scaleHomMat2dScale, hom_mat2d_rotateHomMat2dRotate, hom_mat2d_slantHomMat2dSlant, hom_mat2d_reflectHomMat2dReflect

See also

hom_mat2d_reflect_localHomMat2dReflectLocal

Module🔗

Foundation