Skip to content

set_shape_model_metricSetShapeModelMetricSetShapeModelMetricset_shape_model_metricT_set_shape_model_metric🔗

Short description🔗

set_shape_model_metricSetShapeModelMetricSetShapeModelMetricset_shape_model_metricT_set_shape_model_metric — Set the metric of a shape model that was created from XLD contours.

Signature🔗

set_shape_model_metric( image Image, shape_model ModelID, hom_mat2d HomMat2D, string Metric )void SetShapeModelMetric( const HObject& Image, const HTuple& ModelID, const HTuple& HomMat2D, const HTuple& Metric )static void HOperatorSet.SetShapeModelMetric( HObject image, HTuple modelID, HTuple homMat2D, HTuple metric )def set_shape_model_metric( image: HObject, model_id: HHandle, hom_mat_2d: Sequence[float], metric: str ) -> None

Herror T_set_shape_model_metric( const Hobject Image, const Htuple ModelID, const Htuple HomMat2D, const Htuple Metric )

void HShapeModel::SetShapeModelMetric( const HImage& Image, const HHomMat2D& HomMat2D, const HString& Metric ) const

void HShapeModel::SetShapeModelMetric( const HImage& Image, const HHomMat2D& HomMat2D, const char* Metric ) const

void HShapeModel::SetShapeModelMetric( const HImage& Image, const HHomMat2D& HomMat2D, const wchar_t* Metric ) const (Windows only)

void HImage::SetShapeModelMetric( const HShapeModel& ModelID, const HHomMat2D& HomMat2D, const HString& Metric ) const

void HImage::SetShapeModelMetric( const HShapeModel& ModelID, const HHomMat2D& HomMat2D, const char* Metric ) const

void HImage::SetShapeModelMetric( const HShapeModel& ModelID, const HHomMat2D& HomMat2D, const wchar_t* Metric ) const (Windows only)

void HShapeModel.SetShapeModelMetric( HImage image, HHomMat2D homMat2D, string metric )

void HImage.SetShapeModelMetric( HShapeModel modelID, HHomMat2D homMat2D, string metric )

Description🔗

set_shape_model_metricSetShapeModelMetric changes the value of the parameter Metricmetricmetric that was selected during the creation of the shape model ModelIDmodelIDmodel_id from XLD contours. For this, the polarity of the model edges is determined based on the image Imageimageimage. The transformation that maps the model edges to the image position where the respective object appears is given in HomMat2DhomMat2Dhom_mat_2d.

The parameter Metricmetricmetric determines the conditions under which the model is recognized later in the search image. If Metricmetricmetric \(=\) 'use_polarity'"use_polarity", the object in the image and the model must have the same contrast. If, for example, the model is a bright object on a dark background, the object is found only if it is also brighter than the background. If Metricmetricmetric \(=\) 'ignore_global_polarity'"ignore_global_polarity", the object is found in the image also if the contrast reverses globally. In the above example, the object hence is also found if it is darker than the background. The runtime of find_generic_shape_modelFindGenericShapeModel will increase slightly in this case.

It must be ensured that the object edges in the Imageimageimage have the same (or inverse) polarity as the object edges in the image in which the object must be searched later. Especially, the object must not be occluded in the Imageimageimage and the background must be either brighter than the object or darker. Otherwise, the determined polarity of the model edges will not represent the polarity of the object edges during the search. Note that only the polarity of the edges is determined, not their contrast. Note also that the polarity is determined from a single-channel image, only. If a multichannel image is passed in Imageimageimage, only the first channel will be used (and no error message will be returned).

The transformation defined by the matrix HomMat2DhomMat2Dhom_mat_2d maps the model contours to the respective position where the object appears in the Imageimageimage. It can be obtained by finding the object in the Imageimageimage, e.g., with the operator find_generic_shape_modelFindGenericShapeModel and determining the respective transformation matrix with the procedure get_hom_mat2d_from_matching_result. The operator set_shape_model_metricSetShapeModelMetric ignores an origin that was set by set_shape_model_originSetShapeModelOrigin and always assumes (0,0) as the origin. Hence, when finding the object in the Imageimageimage, all other operators must have the origin at the point (0,0). Therefore, set_shape_model_originSetShapeModelOrigin must be called with (0,0) as the origin.

A typical proceeding is to read the XLD contours from file. Since these XLD contours do not provide polarity information, the shape model must be created from the XLD contours by setting the parameter Metricmetricmetric to 'ignore_local_polarity'"ignore_local_polarity". Then, in a first search image the model is recognized. The transformation that maps the model contours to the position of the object in the search image can be determined from the matching result. To verify the match interactively, the model contours can be mapped to this position. If the matching result is correct, the value of the parameter Metricmetricmetric can be changed, e.g., to 'use_polarity'"use_polarity". This leads to a faster and more robust recognition in the following images.

Attention🔗

set_shape_model_metricSetShapeModelMetric can only be used with shape models that were created from XLD contours.

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 modifies the state of the following input parameter:

During execution of this operator, access to the value of this parameter must be synchronized if it is used across multiple threads.

Parameters🔗

Imageimageimage (input_object) singlechannelimage → object (byte / uint2)HObject (byte / uint2)HImage (byte / uint2)HObject (byte / uint2)Hobject (byte / uint2)

Input image used for the determination of the polarity.

ModelIDmodelIDmodel_id (input_control, state is modified) shape_model → (handle)HTuple (HHandle)HShapeModel, HTuple (IntPtr)HHandleHtuple (handle)

Handle of the model.

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

Transformation matrix.

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

Match metric.

Default: 'use_polarity'"use_polarity"
List of values: 'ignore_global_polarity', 'use_polarity'"ignore_global_polarity", "use_polarity"

Example🔗

(HDevelop)

*
* Read the contours from file
read_contour_xld_dxf (Contours, 'metal-part-01', [], [], DxfStatus)
*
* Scale the contours such that they correspond to the image
hom_mat2d_identity (HomMat2DIdentity)
hom_mat2d_scale (HomMat2DIdentity, 3.35, 3.35, 0, 0, HomMat2DScale)
affine_trans_contour_xld (Contours, ContoursAffineTrans, HomMat2DScale)
*
* Create the shape model with Metric='ignore_local_polarity'
create_generic_shape_model (ModelID)
train_generic_shape_model (ContoursAffineTrans, ModelID)
*
* Get an image of the object and try to find the object in this image
read_image (Image, 'metal-parts/metal-parts-01')
find_generic_shape_model (Image, ModelID, MatchResultID, NumMatchResult)
*
* Visualize the match
get_generic_shape_model_result_object (Objects, MatchResultID, 'all', \
                                       'contours')
stop()
get_generic_shape_model_result (MatchResultID, 'all', 'hom_mat_2d', \
                                HomMat2D)
*
* Set the matching metric to 'use_polarity', based on the position
* of the found object
set_shape_model_metric (Image, ModelID, HomMat2D, 'use_polarity')
*
* Use the shape model to detect the object faster and more robust
read_image (Image, 'metal-parts/metal-parts-02')
find_generic_shape_model (Image, ModelID, MatchResultID, NumMatchResult)
*
* Visualize the matches
get_generic_shape_model_result_object (Objects, MatchResultID, 'all', \
                                       'contours')

Result🔗

If the parameters are valid, the operator set_shape_model_metricSetShapeModelMetric returns the value 2 (H_MSG_TRUE). If necessary an exception is raised.

Combinations with other operators🔗

Combinations

Possible predecessors

create_generic_shape_modelCreateGenericShapeModel

Possible successors

find_generic_shape_modelFindGenericShapeModel

See also

set_generic_shape_model_paramSetGenericShapeModelParam

Module🔗

Matching