hom_mat3d_identity ( : : : HomMat3DIdentity )

Generate the homogeneous transformation matrix of the identical 3D transformation.

hom_mat3d_identity generates the homogeneous transformation matrix HomMat3DIdentity describing the identical 3D transformation:

                     / 1 0 0 0 \
  HomMat3DIdentity = | 0 1 0 0 |
                     | 0 0 1 0 |
                     \ 0 0 0 1 /


Attention

Note that homogeneous matrices are stored row-by-row as a tuple; the last row is not stored because it is identical for all homogeneous matrices that describe an affine transformation. Thus, HomMat3DIdentity is stored as the tuple [1,0,0,0,0,1,0,0,0,0,1,0].


Parameters

HomMat3DIdentity (output_control)
affine3d-array -> real
Transformation matrix.
Number of elements: 12


Result

hom_mat3d_identity always returns 2 (H_MSG_TRUE).


Parallelization Information

hom_mat3d_identity is reentrant and processed without parallelization.


Possible Successors

hom_mat3d_translate, hom_mat3d_scale, hom_mat3d_rotate


Alternatives

pose_to_hom_mat3d


Module

Basic operators



Copyright © 1996-2005 MVTec Software GmbH