ClassesClasses | | Operators

query_data_code_2d_paramsT_query_data_code_2d_paramsQueryDataCode2dParamsQueryDataCode2dParams (Operator)

Name

query_data_code_2d_paramsT_query_data_code_2d_paramsQueryDataCode2dParamsQueryDataCode2dParams — Get for a given 2D data code model the names of the generic parameters or objects that can be used in the other 2D data code operators.

Signature

query_data_code_2d_params( : : DataCodeHandle, QueryName : GenParamName)

Herror T_query_data_code_2d_params(const Htuple DataCodeHandle, const Htuple QueryName, Htuple* GenParamName)

void QueryDataCode2dParams(const HTuple& DataCodeHandle, const HTuple& QueryName, HTuple* GenParamName)

HTuple HDataCode2D::QueryDataCode2dParams(const HString& QueryName) const

HTuple HDataCode2D::QueryDataCode2dParams(const char* QueryName) const

static void HOperatorSet.QueryDataCode2dParams(HTuple dataCodeHandle, HTuple queryName, out HTuple genParamName)

HTuple HDataCode2D.QueryDataCode2dParams(string queryName)

Description

The operator query_data_code_2d_paramsquery_data_code_2d_paramsQueryDataCode2dParamsQueryDataCode2dParamsQueryDataCode2dParams returns the names of the generic parameters that are supported by the 2D data code operators set_data_code_2d_paramset_data_code_2d_paramSetDataCode2dParamSetDataCode2dParamSetDataCode2dParam, get_data_code_2d_paramget_data_code_2d_paramGetDataCode2dParamGetDataCode2dParamGetDataCode2dParam, find_data_code_2dfind_data_code_2dFindDataCode2dFindDataCode2dFindDataCode2d, get_data_code_2d_resultsget_data_code_2d_resultsGetDataCode2dResultsGetDataCode2dResultsGetDataCode2dResults, and get_data_code_2d_objectsget_data_code_2d_objectsGetDataCode2dObjectsGetDataCode2dObjectsGetDataCode2dObjects.

For an explanation of the concept of the 2D data code reader see the introduction of chapter Identification / Data Code.

The parameter QueryNameQueryNameQueryNameQueryNamequeryName is used to select the desired parameter group:

'get_model_params'"get_model_params""get_model_params""get_model_params""get_model_params":

get_data_code_2d_paramget_data_code_2d_paramGetDataCode2dParamGetDataCode2dParamGetDataCode2dParam - Parameters for querying the 2D data code model.

'set_model_params'"set_model_params""set_model_params""set_model_params""set_model_params":

set_data_code_2d_paramset_data_code_2d_paramSetDataCode2dParamSetDataCode2dParamSetDataCode2dParam - Parameters for adjusting the 2D data code model.

'find_params'"find_params""find_params""find_params""find_params":

find_data_code_2dfind_data_code_2dFindDataCode2dFindDataCode2dFindDataCode2d - Parameters used while searching and reading the 2D data code symbols.

'get_result_params'"get_result_params""get_result_params""get_result_params""get_result_params":

get_data_code_2d_resultsget_data_code_2d_resultsGetDataCode2dResultsGetDataCode2dResultsGetDataCode2dResults - Parameters for querying the alphanumerical results of the symbol search.

'get_result_objects'"get_result_objects""get_result_objects""get_result_objects""get_result_objects":

get_data_code_2d_objectsget_data_code_2d_objectsGetDataCode2dObjectsGetDataCode2dObjectsGetDataCode2dObjects - Parameters for accessing the iconic objects of the symbol search.

'trained'"trained""trained""trained""trained":

set_data_code_2d_paramset_data_code_2d_paramSetDataCode2dParamSetDataCode2dParamSetDataCode2dParam - Parameters which values were determined by training. The next training will not reset these parameters, but extend them.

The returned parameter list depends only on the type of the data code and not on the current state of the model or its results.

Execution Information

Parameters

DataCodeHandleDataCodeHandleDataCodeHandleDataCodeHandledataCodeHandle (input_control)  datacode_2d HDataCode2D, HTupleHTupleHtuple (handle) (IntPtr) (HHandle) (handle)

Handle of the 2D data code model.

QueryNameQueryNameQueryNameQueryNamequeryName (input_control)  attribute.name HTupleHTupleHtuple (string) (string) (HString) (char*)

Name of the parameter group.

Default value: 'get_result_params' "get_result_params" "get_result_params" "get_result_params" "get_result_params"

List of values: 'find_params'"find_params""find_params""find_params""find_params", 'get_model_params'"get_model_params""get_model_params""get_model_params""get_model_params", 'get_result_objects'"get_result_objects""get_result_objects""get_result_objects""get_result_objects", 'get_result_params'"get_result_params""get_result_params""get_result_params""get_result_params", 'set_model_params'"set_model_params""set_model_params""set_model_params""set_model_params", 'trained'"trained""trained""trained""trained"

GenParamNameGenParamNameGenParamNameGenParamNamegenParamName (output_control)  attribute.value-array HTupleHTupleHtuple (string) (string) (HString) (char*)

List containing the names of the supported generic parameters.

Example (HDevelop)

* This example demonstrates how the names of all available model parameters
* can be queried.  This is used to request first the settings of the
* untrained and then the settings of the trained model.

* Create a model for reading Data matrix ECC 200 codes
create_data_code_2d_model ('Data Matrix ECC 200', [], [], DataCodeHandle)
* Query all the names of the generic parameters that can be passed to the
* operator get_data_code_2d_param to request the model
query_data_code_2d_params (DataCodeHandle, 'get_model_params', GenParamName)
* Request the current settings of the (untrained) model
get_data_code_2d_param(DataCodeHandle, GenParamName, ModelParams)

* Read a training image
read_image (Image, 'datacode/ecc200/ecc200_cpu_008')
* train the model with the symbol in the image
find_data_code_2d (Image, SymbolXLDs, DataCodeHandle, 'train', 'all', \
                   ResultHandles, DecodedDataStrings)
* Request the current settings of the (now trained) model
get_data_code_2d_param(DataCodeHandle, GenParamName, TrainedModelParams)
* Create a tuple that demonstrates the changings
ModelAdaption := GenParamName + ':   ' + ModelParams + '  ->  ' + \
                 TrainedModelParams

* Clear the model
clear_data_code_2d_model (DataCodeHandle)

Result

The operator query_data_code_2d_paramsquery_data_code_2d_paramsQueryDataCode2dParamsQueryDataCode2dParamsQueryDataCode2dParams returns the value 2 (H_MSG_TRUE) if the given parameters are correct. Otherwise, an exception is raised.

Possible Predecessors

create_data_code_2d_modelcreate_data_code_2d_modelCreateDataCode2dModelCreateDataCode2dModelCreateDataCode2dModel

Possible Successors

get_data_code_2d_paramget_data_code_2d_paramGetDataCode2dParamGetDataCode2dParamGetDataCode2dParam, get_data_code_2d_resultsget_data_code_2d_resultsGetDataCode2dResultsGetDataCode2dResultsGetDataCode2dResults, get_data_code_2d_objectsget_data_code_2d_objectsGetDataCode2dObjectsGetDataCode2dObjectsGetDataCode2dObjects

Module

Data Code


ClassesClasses | | Operators