Skip to content

project_object_model_3dProjectObjectModel3dProjectObjectModel3dproject_object_model_3dT_project_object_model_3dπŸ”—

Short descriptionπŸ”—

project_object_model_3dProjectObjectModel3dProjectObjectModel3dproject_object_model_3dT_project_object_model_3d β€” Project a 3D object model into image coordinates.

SignatureπŸ”—

project_object_model_3d( out xld_cont ModelContours, object_model_3d ObjectModel3D, campar CamParam, pose Pose, string GenParamName, string GenParamValue )void ProjectObjectModel3d( HObject* ModelContours, const HTuple& ObjectModel3D, const HTuple& CamParam, const HTuple& Pose, const HTuple& GenParamName, const HTuple& GenParamValue )static void HOperatorSet.ProjectObjectModel3d( out HObject modelContours, HTuple objectModel3D, HTuple camParam, HTuple pose, HTuple genParamName, HTuple genParamValue )def project_object_model_3d( object_model_3d: HHandle, cam_param: Sequence[Union[int, float, str]], pose: Sequence[Union[int, float]], gen_param_name: MaybeSequence[str], gen_param_value: MaybeSequence[Union[str, int, float]] ) -> HObject

Herror T_project_object_model_3d( Hobject* ModelContours, const Htuple ObjectModel3D, const Htuple CamParam, const Htuple Pose, const Htuple GenParamName, const Htuple GenParamValue )

HXLDCont HObjectModel3D::ProjectObjectModel3d( const HCamPar& CamParam, const HPose& Pose, const HTuple& GenParamName, const HTuple& GenParamValue ) const

HXLDCont HObjectModel3D::ProjectObjectModel3d( const HCamPar& CamParam, const HPose& Pose, const HString& GenParamName, const HString& GenParamValue ) const

HXLDCont HObjectModel3D::ProjectObjectModel3d( const HCamPar& CamParam, const HPose& Pose, const char* GenParamName, const char* GenParamValue ) const

HXLDCont HObjectModel3D::ProjectObjectModel3d( const HCamPar& CamParam, const HPose& Pose, const wchar_t* GenParamName, const wchar_t* GenParamValue ) const (Windows only)

HXLDCont HCamPar::ProjectObjectModel3d( const HObjectModel3D& ObjectModel3D, const HPose& Pose, const HTuple& GenParamName, const HTuple& GenParamValue ) const

HXLDCont HCamPar::ProjectObjectModel3d( const HObjectModel3D& ObjectModel3D, const HPose& Pose, const HString& GenParamName, const HString& GenParamValue ) const

HXLDCont HCamPar::ProjectObjectModel3d( const HObjectModel3D& ObjectModel3D, const HPose& Pose, const char* GenParamName, const char* GenParamValue ) const

HXLDCont HCamPar::ProjectObjectModel3d( const HObjectModel3D& ObjectModel3D, const HPose& Pose, const wchar_t* GenParamName, const wchar_t* GenParamValue ) const (Windows only)

HXLDCont HPose::ProjectObjectModel3d( const HObjectModel3D& ObjectModel3D, const HCamPar& CamParam, const HTuple& GenParamName, const HTuple& GenParamValue ) const

HXLDCont HPose::ProjectObjectModel3d( const HObjectModel3D& ObjectModel3D, const HCamPar& CamParam, const HString& GenParamName, const HString& GenParamValue ) const

HXLDCont HPose::ProjectObjectModel3d( const HObjectModel3D& ObjectModel3D, const HCamPar& CamParam, const char* GenParamName, const char* GenParamValue ) const

HXLDCont HPose::ProjectObjectModel3d( const HObjectModel3D& ObjectModel3D, const HCamPar& CamParam, const wchar_t* GenParamName, const wchar_t* GenParamValue ) const (Windows only)

HXLDCont HObjectModel3D.ProjectObjectModel3d( HCamPar camParam, HPose pose, HTuple genParamName, HTuple genParamValue )

HXLDCont HObjectModel3D.ProjectObjectModel3d( HCamPar camParam, HPose pose, string genParamName, string genParamValue )

HXLDCont HCamPar.ProjectObjectModel3d( HObjectModel3D objectModel3D, HPose pose, HTuple genParamName, HTuple genParamValue )

HXLDCont HCamPar.ProjectObjectModel3d( HObjectModel3D objectModel3D, HPose pose, string genParamName, string genParamValue )

HXLDCont HPose.ProjectObjectModel3d( HObjectModel3D objectModel3D, HCamPar camParam, HTuple genParamName, HTuple genParamValue )

HXLDCont HPose.ProjectObjectModel3d( HObjectModel3D objectModel3D, HCamPar camParam, string genParamName, string genParamValue )

DescriptionπŸ”—

The operator project_object_model_3dProjectObjectModel3d projects a 3D object model into the image coordinate system and returns the projected contours in ModelContoursmodelContoursmodel_contours. This operator is particularly useful for the visualization of 3D object models. Note that primitives are not projected but silently ignored. The coordinates of the 3D object model are given in the model coordinate system (mcs), a 3D world coordinate system. First, they are transformed into the camera coordinate system (ccs) using the given Poseposepose. Then, these coordinates are projected into the image coordinate system based on the internal camera parameters CamParamcamParamcam_param. Thereby the pose is needed in the form \(\mvPoseVar{{ccs}}{mcs}\), see Transformations / Poses and β€œSolution Guide III-C - 3D Vision”. Thus, the Poseposepose describes the position and orientation of the world coordinate system with respect to the camera coordinate system. The internal camera parameters CamParamcamParamcam_param describe the projection characteristics of the camera (see Calibration).

There are some generic parameters that can optionally be used to influence the projection. If desired, these parameters and their corresponding values can be specified by using GenParamNamegenParamNamegen_param_name and GenParamValuegenParamValuegen_param_value, respectively. The following values for GenParamNamegenParamNamegen_param_name are possible:

  • 'data'"data": This parameter specifies which geometric data of the 3D object model should be projected. If 'data'"data" is set to 'faces'"faces", the faces of the 3D object model are projected. The faces are represented by their border lines in ModelContoursmodelContoursmodel_contours. If 'data'"data" is set to 'lines'"lines", the 3D lines of the 3D object model are projected. If 'data'"data" is set to 'points'"points", the points of the 3D object model are projected. The projected points can be represented in ModelContoursmodelContoursmodel_contours in different ways. The point representation can be selected by using the generic parameter 'point_shape'"point_shape" (see below). Finally, if 'data'"data" is set to 'auto'"auto", HALCON automatically chooses the most descriptive geometry data that is available in the 3D object model for visualization.

    List of values: 'auto'"auto", 'faces'"faces", 'lines'"lines", 'points'"points".

    Default: 'auto'"auto".

  • 'point_shape'"point_shape": This parameter specifies how points are represented in the output contour ModelContoursmodelContoursmodel_contours. Consequently, this parameter only has an effect if the points of the 3D object model are selected for projection (see above). If 'point_shape'"point_shape" is set to 'circle'"circle", points are represented by circles, whereas if 'point_shape'"point_shape" is set to 'cross'"cross", points are represented by crosses. In both cases the size of the points (i.e., the size of the circles or the size of the crosses) can be specified by the generic parameter 'point_size'"point_size" (see below). The orientation of the crosses can be specified by the generic parameter 'point_orientation'"point_orientation" (see below).

    List of values: 'circle'"circle", 'cross'"cross".

    Default: 'circle'"circle".

  • 'point_size'"point_size": This parameter specifies the size of the point representation in the output contour ModelContoursmodelContoursmodel_contours, i.e., the size of the circles or the size of the crosses depending on the selected 'point_shape'"point_shape". Consequently, this parameter only has an effect if the points of the 3D object model are selected for projection (see above). The size must be given in pixel units. If 'point_size'"point_size" is set to 00, each point is represented by a contour that contains a single contour point.

    Suggested values: 00, 22, 44.

    Default: 44.

  • 'point_orientation'"point_orientation": This parameter specifies the orientation of the crosses in radians. Consequently, this parameter only has an effect if the points of the 3D object model are selected for projection and 'point_shape'"point_shape" is set to 'cross'"cross" (see above).

    Suggested values: 00, 0.390.39, 0.790.79.

    Default: 0.790.79.

  • 'union_adjacent_contours'"union_adjacent_contours": This parameter specifies if adjacent projected contours should be joined or not. Activating this option is equivalent to calling union_adjacent_contours_xldUnionAdjacentContoursXld after this operator, but significantly faster.

    List of values: 'true'"true", 'false'"false".

    Default: 'true'"true".

  • 'hidden_surface_removal'"hidden_surface_removal": This parameter can be used to switch on or off the removal of hidden surfaces. If 'hidden_surface_removal'"hidden_surface_removal" is set to 'true'"true", only those projected edges are returned that are not hidden by faces of the 3D object model. If 'hidden_surface_removal'"hidden_surface_removal" is set to 'false'"false", all projected edges are returned. This is faster than a projection with 'hidden_surface_removal'"hidden_surface_removal" set to 'true'"true".

    If the system variable (see set_systemSetSystem) 'opengl_hidden_surface_removal_enable'"opengl_hidden_surface_removal_enable" is set to 'true'"true" (which is the default if it is available) and 'hidden_surface_removal'"hidden_surface_removal" is set to 'true'"true", the projection of the model is accelerated using the graphics card. Depending on the graphics card this is significantly faster than the non accelerated algorithm. Be aware that the results of the OpenGL projection are slightly different compared to the analytic projection. Notable, only the contours visible through CamParamcamParamcam_param are projected in this mode.

    List of values: 'true'"true", 'false'"false".

    Default: 'true'"true".

  • 'min_face_angle'"min_face_angle": 3D edges are only projected if the angle between the two 3D faces that are incident with the 3D edge is at least 'min_face_angle'"min_face_angle". If 'min_face_angle'"min_face_angle" is set to 0.00.0, all edges are projected. If 'min_face_angle'"min_face_angle" is set to \(\pi\) (equivalent to 180 degrees), only the silhouette of the 3D object model is returned. This parameter can be used to suppress edges within curved surfaces, e.g., the surface of a cylinder or cone.

    Suggested values: 0.170.17, 0.260.26, 0.350.35, 0.520.52.

    Default: 0.520.52.

AttentionπŸ”—

Cameras with hypercentric lenses are not supported. For displaying large faces with a non-zero distortion in CamParamcamParamcam_param, note that the distortion is only applied to the points of the model. In the projection, these points are subsequently connected by straight lines. For a good approximation of the distorted lines, please use a triangulation with sufficiently small triangles.

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πŸ”—

ModelContoursmodelContoursmodel_contours (output_object) xld_cont(-array) β†’ objectHObjectHXLDContHObjectHobject *

Projected model contours.

ObjectModel3DobjectModel3Dobject_model_3d (input_control) object_model_3d β†’ (handle)HTuple (HHandle)HObjectModel3D, HTuple (IntPtr)HHandleHtuple (handle)

Handle of the 3D object model.

CamParamcamParamcam_param (input_control) campar β†’ (real / integer / string)HTuple (double / Hlong / HString)HCamPar, HTuple (double / int / long / string)Sequence[Union[int, float, str]]Htuple (double / Hlong / char*)

Internal camera parameters.

Poseposepose (input_control) pose β†’ (real / integer)HTuple (double / Hlong)HPose, HTuple (double / int / long)Sequence[Union[int, float]]Htuple (double / Hlong)

3D pose of the world coordinate system in camera coordinates.

Number of elements: Pose == 7

GenParamNamegenParamNamegen_param_name (input_control) string(-array) β†’ (string)HTuple (HString)HTuple (string)MaybeSequence[str]Htuple (char*)

Name of the generic parameter.

Default: [][]
List of values: 'data', 'false', 'hidden_surface_removal', 'min_face_angle', 'point_orientation', 'point_shape', 'point_size', 'true', 'union_adjacent_contours'"data", "false", "hidden_surface_removal", "min_face_angle", "point_orientation", "point_shape", "point_size", "true", "union_adjacent_contours"

GenParamValuegenParamValuegen_param_value (input_control) string(-array) β†’ (string / integer / real)HTuple (HString / Hlong / double)HTuple (string / int / long / double)MaybeSequence[Union[str, int, float]]Htuple (char* / Hlong / double)

Value of the generic parameter.

Default: [][]
Suggested values: 0.17, 0.26, 0.35, 0.52, 'true', 'false', 'auto', 'points', 'faces', 'lines', 'circle', 'cross', 1, 2, 3, 4, 0.7853980.17, 0.26, 0.35, 0.52, "true", "false", "auto", "points", "faces", "lines", "circle", "cross", 1, 2, 3, 4, 0.785398

ResultπŸ”—

project_object_model_3dProjectObjectModel3d returns 2 (H_MSG_TRUE) if all parameters are correct. If necessary, an exception is raised. If the geometric data that was selected for the projection is not available in the 3D object model, the error 9514 is raised.

Combinations with other operatorsπŸ”—

Combinations

Possible predecessors

read_object_model_3dReadObjectModel3d, affine_trans_object_model_3dAffineTransObjectModel3d, prepare_object_model_3dPrepareObjectModel3d

Possible successors

clear_object_model_3dClearObjectModel3d

See also

project_shape_model_3dProjectShapeModel3d, object_model_3d_to_xyzObjectModel3dToXyz

ModuleπŸ”—

3D Metrology