Skip to content

create_ncc_modelCreateNccModelCreateNccModelcreate_ncc_modelT_create_ncc_modelπŸ”—

Short descriptionπŸ”—

create_ncc_modelCreateNccModelCreateNccModelcreate_ncc_modelT_create_ncc_model β€” Prepare an NCC model for matching.

SignatureπŸ”—

create_ncc_model( image Template, integer NumLevels, angle.rad AngleStart, angle.rad AngleExtent, angle.rad AngleStep, string Metric, out ncc_model ModelID )void CreateNccModel( const HObject& Template, const HTuple& NumLevels, const HTuple& AngleStart, const HTuple& AngleExtent, const HTuple& AngleStep, const HTuple& Metric, HTuple* ModelID )static void HOperatorSet.CreateNccModel( HObject template, HTuple numLevels, HTuple angleStart, HTuple angleExtent, HTuple angleStep, HTuple metric, out HTuple modelID )def create_ncc_model( template: HObject, num_levels: Union[int, str], angle_start: float, angle_extent: float, angle_step: Union[float, str], metric: str ) -> HHandle

Herror T_create_ncc_model( const Hobject Template, const Htuple NumLevels, const Htuple AngleStart, const Htuple AngleExtent, const Htuple AngleStep, const Htuple Metric, Htuple* ModelID )

void HNCCModel::HNCCModel( const HImage& Template, const HTuple& NumLevels, double AngleStart, double AngleExtent, const HTuple& AngleStep, const HString& Metric )

void HNCCModel::HNCCModel( const HImage& Template, Hlong NumLevels, double AngleStart, double AngleExtent, double AngleStep, const HString& Metric )

void HNCCModel::HNCCModel( const HImage& Template, Hlong NumLevels, double AngleStart, double AngleExtent, double AngleStep, const char* Metric )

void HNCCModel::HNCCModel( const HImage& Template, Hlong NumLevels, double AngleStart, double AngleExtent, double AngleStep, const wchar_t* Metric ) (Windows only)

public HNCCModel( HImage template, HTuple numLevels, double angleStart, double angleExtent, HTuple angleStep, string metric )

public HNCCModel( HImage template, int numLevels, double angleStart, double angleExtent, double angleStep, string metric )

void HNCCModel::CreateNccModel( const HImage& Template, const HTuple& NumLevels, double AngleStart, double AngleExtent, const HTuple& AngleStep, const HString& Metric )

void HNCCModel::CreateNccModel( const HImage& Template, Hlong NumLevels, double AngleStart, double AngleExtent, double AngleStep, const HString& Metric )

void HNCCModel::CreateNccModel( const HImage& Template, Hlong NumLevels, double AngleStart, double AngleExtent, double AngleStep, const char* Metric )

void HNCCModel::CreateNccModel( const HImage& Template, Hlong NumLevels, double AngleStart, double AngleExtent, double AngleStep, const wchar_t* Metric ) (Windows only)

HNCCModel HImage::CreateNccModel( const HTuple& NumLevels, double AngleStart, double AngleExtent, const HTuple& AngleStep, const HString& Metric ) const

HNCCModel HImage::CreateNccModel( Hlong NumLevels, double AngleStart, double AngleExtent, double AngleStep, const HString& Metric ) const

HNCCModel HImage::CreateNccModel( Hlong NumLevels, double AngleStart, double AngleExtent, double AngleStep, const char* Metric ) const

HNCCModel HImage::CreateNccModel( Hlong NumLevels, double AngleStart, double AngleExtent, double AngleStep, const wchar_t* Metric ) const (Windows only)

void HNCCModel.CreateNccModel( HImage template, HTuple numLevels, double angleStart, double angleExtent, HTuple angleStep, string metric )

void HNCCModel.CreateNccModel( HImage template, int numLevels, double angleStart, double angleExtent, double angleStep, string metric )

HNCCModel HImage.CreateNccModel( HTuple numLevels, double angleStart, double angleExtent, HTuple angleStep, string metric )

HNCCModel HImage.CreateNccModel( int numLevels, double angleStart, double angleExtent, double angleStep, string metric )

DescriptionπŸ”—

The operator create_ncc_modelCreateNccModel prepares a template, which is passed in the image Templatetemplatetemplate, as an NCC model used for matching using the normalized cross correlation (NCC). The ROI of the model is passed as the domain of Templatetemplatetemplate.

The model is generated using multiple image pyramid levels at multiple rotations on each level and is stored in memory. The output parameter ModelIDmodelIDmodel_id is a handle for this model, which is used in subsequent calls to find_ncc_modelFindNccModel.

The number of pyramid levels is determined with the parameter NumLevelsnumLevelsnum_levels. It should be chosen as large as possible because by this the time necessary to find the object is significantly reduced. On the other hand, NumLevelsnumLevelsnum_levels must be chosen such that the model is still recognizable and contains a sufficient number of points (at least eight) on the highest pyramid level. This can be checked using the domains of the output images of gen_gauss_pyramidGenGaussPyramid. If not enough model points are generated, the number of pyramid levels is reduced internally until enough model points are found on the highest pyramid level. If this procedure would lead to a model with no pyramid levels, i.e., if the number of model points is already too small on the lowest pyramid level, create_ncc_modelCreateNccModel returns an error message. If NumLevelsnumLevelsnum_levels is set to 'auto'"auto" or 00, create_ncc_modelCreateNccModel determines the number of pyramid levels automatically. The automatically computed number of pyramid levels can be queried using get_ncc_model_paramsGetNccModelParams. In rare cases, it might happen that create_ncc_modelCreateNccModel determines a value for the number of pyramid levels that is too large or too small. If the number of pyramid levels is chosen too large, the model may not be recognized in the image or it may be necessary to select very low parameters for MinScoreminScoremin_score in find_ncc_modelFindNccModel in order to find the model. If the number of pyramid levels is chosen too small, the time required to find the model in find_ncc_modelFindNccModel may increase. In these cases, the number of pyramid levels should be selected by inspecting the output of gen_gauss_pyramidGenGaussPyramid. Here, Modemodemode \(=\) 'constant'"constant" and Scalescalescale \(=\) 0.50.5 should be used.

The parameters AngleStartangleStartangle_start and AngleExtentangleExtentangle_extent determine the range of possible rotations, in which the model can occur in the image. Note that the model can only be found in this range of angles by find_ncc_modelFindNccModel. The parameter AngleStepangleStepangle_step determines the step length within the selected range of angles. Hence, if subpixel accuracy is not specified in find_ncc_modelFindNccModel, this parameter specifies the accuracy that is achievable for the angles in find_ncc_modelFindNccModel. AngleStepangleStepangle_step should be chosen based on the size of the object. Smaller models do not possess many different discrete rotations in the image, and hence AngleStepangleStepangle_step should be chosen larger for smaller models. If AngleExtentangleExtentangle_extent is not an integer multiple of AngleStepangleStepangle_step, AngleStepangleStepangle_step is modified accordingly. To ensure a sampling of the range of possible rotations that is independent of the given AngleStartangleStartangle_start, the range of possible rotations is modified as follows: If there is no positive integer value n such that AngleStartangleStartangle_start plus n times AngleStepangleStepangle_step is exactly 0.0, AngleStartangleStartangle_start is decreased by up to AngleStepangleStepangle_step and AngleExtentangleExtentangle_extent is increased by AngleStepangleStepangle_step.

The model is pre-generated for the selected angle range and stored in memory. The memory required to store the model is proportional to the number of angle steps and the number of points in the model. Hence, if AngleStepangleStepangle_step is too small or AngleExtentangleExtentangle_extent too big, it may happen that the model no longer fits into the (virtual) memory. In this case, either AngleStepangleStepangle_step must be enlarged or AngleExtentangleExtentangle_extent must be reduced. In any case, it is desirable that the model completely fits into the main memory, because this avoids paging by the operating system, and hence the time to find the object will be much smaller. Since angles can be determined with subpixel resolution by find_ncc_modelFindNccModel, AngleStep >= 1 can be selected for models of a diameter smaller than about 200 pixels. If AngleStep = β€˜auto’ or 00 is selected, create_ncc_modelCreateNccModel automatically determines a suitable angle step length based on the size of the model. The automatically computed angle step length can be queried using get_ncc_model_paramsGetNccModelParams.

The parameter Metricmetricmetric determines the conditions under which the model is recognized in the 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_ncc_modelFindNccModel will increase slightly in this case.

The center of gravity of the domain (region) of the model image Templatetemplatetemplate is used as the origin (reference point) of the model. A different origin can be set with set_ncc_model_originSetNccModelOrigin.

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 returns a handle. Note that the state of an instance of this handle type may be changed by specific operators even though the handle is used as an input parameter by those operators.

ParametersπŸ”—

Templatetemplatetemplate (input_object) singlechannelimage β†’ object (byte / uint2)HObject (byte / uint2)HImage (byte / uint2)HObject (byte / uint2)Hobject (byte / uint2)

Input image whose domain will be used to create the model.

NumLevelsnumLevelsnum_levels (input_control) integer β†’ (integer / string)HTuple (Hlong / HString)HTuple (int / long / string)Union[int, str]Htuple (Hlong / char*)

Maximum number of pyramid levels.

Default: 'auto'"auto"
List of values: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 'auto'0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, "auto"

AngleStartangleStartangle_start (input_control) angle.rad β†’ (real)HTuple (double)HTuple (double)floatHtuple (double)

Smallest rotation of the pattern.

Default: -0.39-0.39
Suggested values: -3.14, -1.57, -0.79, -0.39, -0.20, 0.0-3.14, -1.57, -0.79, -0.39, -0.20, 0.0

AngleExtentangleExtentangle_extent (input_control) angle.rad β†’ (real)HTuple (double)HTuple (double)floatHtuple (double)

Extent of the rotation angles.

Default: 0.790.79
Suggested values: 6.29, 3.14, 1.57, 0.79, 0.396.29, 3.14, 1.57, 0.79, 0.39
Restriction: AngleExtent >= 0

AngleStepangleStepangle_step (input_control) angle.rad β†’ (real / string)HTuple (double / HString)HTuple (double / string)Union[float, str]Htuple (double / char*)

Step length of the angles (resolution).

Default: 'auto'"auto"
Suggested values: 'auto', 0.0, 0.0175, 0.0349, 0.0524, 0.0698, 0.0873"auto", 0.0, 0.0175, 0.0349, 0.0524, 0.0698, 0.0873
Restriction: AngleStep >= 0 && AngleStep <= pi/16

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"

ModelIDmodelIDmodel_id (output_control) ncc_model β†’ (handle)HTuple (HHandle)HNCCModel, HTuple (IntPtr)HHandleHtuple (handle)

Handle of the model.

ResultπŸ”—

If the parameters are valid, the operator create_ncc_modelCreateNccModel returns the value 2 (H_MSG_TRUE). If the parameter NumLevelsnumLevelsnum_levels are chosen such that the model contains too few points, the error 8506 is raised.

Combinations with other operatorsπŸ”—

Combinations

Possible predecessors

draw_regionDrawRegion, reduce_domainReduceDomain, thresholdThreshold

Possible successors

find_ncc_modelFindNccModel, get_ncc_model_paramsGetNccModelParams, clear_ncc_modelClearNccModel, write_ncc_modelWriteNccModel, set_ncc_model_originSetNccModelOrigin, set_ncc_model_paramSetNccModelParam, find_ncc_modelsFindNccModels

Alternatives

create_generic_shape_modelCreateGenericShapeModel

ModuleπŸ”—

Matching