Skip to content

register_object_model_3d_pairRegisterObjectModel3dPairRegisterObjectModel3dPairregister_object_model_3d_pairT_register_object_model_3d_pair🔗

Short description🔗

register_object_model_3d_pairRegisterObjectModel3dPairRegisterObjectModel3dPairregister_object_model_3d_pairT_register_object_model_3d_pair — Search for a transformation between two 3D object models.

Signature🔗

register_object_model_3d_pair( object_model_3d ObjectModel3D1, object_model_3d ObjectModel3D2, string Method, string GenParamName, number GenParamValue, out pose Pose, out number Score )void RegisterObjectModel3dPair( const HTuple& ObjectModel3D1, const HTuple& ObjectModel3D2, const HTuple& Method, const HTuple& GenParamName, const HTuple& GenParamValue, HTuple* Pose, HTuple* Score )static void HOperatorSet.RegisterObjectModel3dPair( HTuple objectModel3D1, HTuple objectModel3D2, HTuple method, HTuple genParamName, HTuple genParamValue, out HTuple pose, out HTuple score )def register_object_model_3d_pair( object_model_3d1: HHandle, object_model_3d2: HHandle, method: str, gen_param_name: MaybeSequence[str], gen_param_value: MaybeSequence[Union[int, str, float]] ) -> Tuple[Sequence[Union[int, float]], Sequence[float]]

Herror T_register_object_model_3d_pair( const Htuple ObjectModel3D1, const Htuple ObjectModel3D2, const Htuple Method, const Htuple GenParamName, const Htuple GenParamValue, Htuple* Pose, Htuple* Score )

HPose HObjectModel3D::RegisterObjectModel3dPair( const HObjectModel3D& ObjectModel3D2, const HString& Method, const HTuple& GenParamName, const HTuple& GenParamValue, HTuple* Score ) const

HPose HObjectModel3D::RegisterObjectModel3dPair( const HObjectModel3D& ObjectModel3D2, const HString& Method, const HString& GenParamName, double GenParamValue, HTuple* Score ) const

HPose HObjectModel3D::RegisterObjectModel3dPair( const HObjectModel3D& ObjectModel3D2, const char* Method, const char* GenParamName, double GenParamValue, HTuple* Score ) const

HPose HObjectModel3D::RegisterObjectModel3dPair( const HObjectModel3D& ObjectModel3D2, const wchar_t* Method, const wchar_t* GenParamName, double GenParamValue, HTuple* Score ) const (Windows only)

HPose HObjectModel3D.RegisterObjectModel3dPair( HObjectModel3D objectModel3D2, string method, HTuple genParamName, HTuple genParamValue, out HTuple score )

HPose HObjectModel3D.RegisterObjectModel3dPair( HObjectModel3D objectModel3D2, string method, string genParamName, double genParamValue, out HTuple score )

Description🔗

register_object_model_3d_pairRegisterObjectModel3dPair searches for a transformation between two 3D object models having an optimal alignment. This process is called registration. The transformation that is returned in Poseposepose can be used to transform ObjectModel3D1objectModel3D1object_model_3d1 to the reference frame of the second object ObjectModel3D2objectModel3D2object_model_3d2. Scorescorescore returns the ratio of the overlapping parts to the not overlapping parts of the two 3D object models. If the two objects are not overlapping, no pose is returned. The parameter Methodmethodmethod decides if the initial relative position is calculated by 'matching'"matching" or if only the pose refinement is performed in relation to the then assumed common global reference frame, which can be selected directly with 'icp'"icp".

The accuracy of the returned pose is limited to around 0.1% of the size of the point clouds due to numerical reasons. The accuracy further depends on the noise of the data points, the number of data points and the shape of the point clouds.

The matching process and the following refinement can be controlled using the following name-value pairs in GenParamNamegenParamNamegen_param_name and GenParamValuegenParamValuegen_param_value:

  • 'default_parameters'"default_parameters": To allow an easy control over the parameters, three different sets of parameters are available. Selecting the 'fast'"fast" parameter set allows a shorter calculation time. 'accurate'"accurate" will give more accurate results. 'robust'"robust" additionally improves the quality of the resulting Scorescorescore at the cost of calculation time.

    List of values: 'fast'"fast", 'accurate'"accurate", 'robust'"robust".

    Default: 'accurate'"accurate".

  • 'rel_sampling_distance'"rel_sampling_distance": This parameter controls the relative sampling rate of the 3D object models that is used to represent the surfaces for the computation. This value is relative to the diameter of the respective object and defines the minimal distance between two sampled points. A higher value will lead to faster and a lower value to more accurate results. This parameter can also be set for each object independently by using 'rel_sampling_distance_obj1'"rel_sampling_distance_obj1" and 'rel_sampling_distance_obj2'"rel_sampling_distance_obj2".

    Suggested values: 0.030.03, 0.050.05, 0.070.07.

    Default: 0.050.05.

  • 'key_point_fraction'"key_point_fraction": This parameter controls the ratio of sampled points that are considered as key points for the matching process. The number is relative to the sampled points of the model. Reducing this ratio speeds up the process, whereas increasing leads to more robust results. This parameter can be also set for each object independently by using 'key_point_fraction_obj1'"key_point_fraction_obj1" and 'key_point_fraction_obj2'"key_point_fraction_obj2".

    Suggested values: 0.20.2, 0.30.3, 0.40.4.

    Default: 0.30.3.

  • 'pose_ref_num_steps'"pose_ref_num_steps": The number of iterative steps used for the pose refinement.

    Suggested values: 55, 77, 1010.

    Default: 55.

  • 'pose_ref_sub_sampling'"pose_ref_sub_sampling": Number of points that are skipped for the pose refinement. The value specifies the number of points that are skipped per selected point. Increasing this value allows faster convergence at the cost of less accurate results. This parameter is only relevant for the smaller of the two objects.

    Suggested values: 11, 22, 2020.

    Default: 22.

  • 'pose_ref_dist_threshold_rel'"pose_ref_dist_threshold_rel": Maximum distance that two faces might have to be considered as potentially overlapping. This value is relative to the diameter of the larger object.

    Suggested values: 0.050.05, 0.10.1, 0.150.15.

    Default: 0.10.1.

  • 'pose_ref_dist_threshold_abs'"pose_ref_dist_threshold_abs": Maximum distance that two faces might have to be considered as potentially overlapping, as absolute value.

  • 'model_invert_normals'"model_invert_normals": Invert the normals of the smaller object, if its normals are inverted relative to the other object.

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

    Default: 'false'"false".

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.

This operator supports canceling timeouts and interrupts.

Parameters🔗

ObjectModel3D1objectModel3D1object_model_3d1 (input_control) object_model_3d → (handle)HTuple (HHandle)HObjectModel3D, HTuple (IntPtr)HHandleHtuple (handle)

Handle of the first 3D object model.

ObjectModel3D2objectModel3D2object_model_3d2 (input_control) object_model_3d → (handle)HTuple (HHandle)HObjectModel3D, HTuple (IntPtr)HHandleHtuple (handle)

Handle of the second 3D object model.

Methodmethodmethod (input_control) string → (string)HTuple (HString)HTuple (string)strHtuple (char*)

Method for the registration.

Default: 'matching'"matching"
List of values: 'icp', 'matching'"icp", "matching"

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

Names of the generic parameters.

Default: [][]
List of values: 'default_parameters', 'key_point_fraction', 'key_point_fraction_obj1', 'key_point_fraction_obj2', 'model_invert_normals', 'pose_ref_dist_threshold_abs', 'pose_ref_dist_threshold_rel', 'pose_ref_num_steps', 'pose_ref_sub_sampling', 'rel_sampling_distance', 'rel_sampling_distance_obj1', 'rel_sampling_distance_obj2'"default_parameters", "key_point_fraction", "key_point_fraction_obj1", "key_point_fraction_obj2", "model_invert_normals", "pose_ref_dist_threshold_abs", "pose_ref_dist_threshold_rel", "pose_ref_num_steps", "pose_ref_sub_sampling", "rel_sampling_distance", "rel_sampling_distance_obj1", "rel_sampling_distance_obj2"

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

Values of the generic parameters.

Default: [][]
Suggested values: 'fast', 'accurate', 'robust', 0.1, 0.25, 0.5, 1, 'true', 'false'"fast", "accurate", "robust", 0.1, 0.25, 0.5, 1, "true", "false"

Poseposepose (output_control) pose → (real / integer)HTuple (double / Hlong)HPose, HTuple (double / int / long)Sequence[Union[int, float]]Htuple (double / Hlong)

Pose to transform ObjectModel3D1objectModel3D1object_model_3d1 in the reference frame of ObjectModel3D2objectModel3D2object_model_3d2.

Scorescorescore (output_control) number-array → (real)HTuple (double)HTuple (double)Sequence[float]Htuple (double)

Overlapping of the two 3D object models.

Example🔗

(HDevelop)

* Generate two boxes
gen_box_object_model_3d ([0,0,0,0,0,0,0],3,2,1, ObjectModel3D1)
gen_box_object_model_3d ([0,0,0.5,15,0,0,0],3,2,1, ObjectModel3D2)
* Match them
register_object_model_3d_pair (ObjectModel3D1, ObjectModel3D2, 'matching',\
                              [], [], Pose, Score)

Result🔗

register_object_model_3d_pairRegisterObjectModel3dPair returns 2 (H_MSG_TRUE) if all parameters are correct. If necessary, an exception is raised.

Combinations with other operators🔗

Combinations

Possible predecessors

read_object_model_3dReadObjectModel3d, gen_object_model_3d_from_pointsGenObjectModel3dFromPoints, xyz_to_object_model_3dXyzToObjectModel3d

Possible successors

register_object_model_3d_globalRegisterObjectModel3dGlobal, affine_trans_object_model_3dAffineTransObjectModel3d, union_object_model_3dUnionObjectModel3d

See also

register_object_model_3d_globalRegisterObjectModel3dGlobal, find_surface_modelFindSurfaceModel

Module🔗

3D Metrology