set_bar_code_paramT_set_bar_code_paramSetBarCodeParamSetBarCodeParamset_bar_code_param (Operator)

Name

set_bar_code_paramT_set_bar_code_paramSetBarCodeParamSetBarCodeParamset_bar_code_param — Set selected parameters of the bar code model.

Signature

set_bar_code_param( : : BarCodeHandle, GenParamName, GenParamValue : )

Herror T_set_bar_code_param(const Htuple BarCodeHandle, const Htuple GenParamName, const Htuple GenParamValue)

void SetBarCodeParam(const HTuple& BarCodeHandle, const HTuple& GenParamName, const HTuple& GenParamValue)

void HBarCode::SetBarCodeParam(const HTuple& GenParamName, const HTuple& GenParamValue) const

void HBarCode::SetBarCodeParam(const HString& GenParamName, double GenParamValue) const

void HBarCode::SetBarCodeParam(const char* GenParamName, double GenParamValue) const

void HBarCode::SetBarCodeParam(const wchar_t* GenParamName, double GenParamValue) const   (Windows only)

static void HOperatorSet.SetBarCodeParam(HTuple barCodeHandle, HTuple genParamName, HTuple genParamValue)

void HBarCode.SetBarCodeParam(HTuple genParamName, HTuple genParamValue)

void HBarCode.SetBarCodeParam(string genParamName, double genParamValue)

def set_bar_code_param(bar_code_handle: HHandle, gen_param_name: MaybeSequence[str], gen_param_value: MaybeSequence[Union[float, int, str]]) -> None

Description

The operator set_bar_code_paramset_bar_code_paramSetBarCodeParamSetBarCodeParamSetBarCodeParamset_bar_code_param is used to set or change the different parameters of a bar code model in order to adapt to special properties of the bar codes or to a particular appearance in the image. All parameters can also be set while creating the bar code model with create_bar_code_modelcreate_bar_code_modelCreateBarCodeModelCreateBarCodeModelCreateBarCodeModelcreate_bar_code_model. The current configuration of the bar code model can be queried with get_bar_code_paramget_bar_code_paramGetBarCodeParamGetBarCodeParamGetBarCodeParamget_bar_code_param.

The following overview lists the different generic parameters with the respective value ranges and default values:

Size of bar code elements:

The first two parameters, 'element_size_min'"element_size_min""element_size_min""element_size_min""element_size_min""element_size_min" and 'element_size_max'"element_size_max""element_size_max""element_size_max""element_size_max""element_size_max", influence the search for candidate regions and the decoding of the bar code. But note that these values are not used as strict limits for the size of the elements of found bar codes, i.e., also bar codes with elements that are smaller than 'element_size_min'"element_size_min""element_size_min""element_size_min""element_size_min""element_size_min" or larger than 'element_size_max'"element_size_max""element_size_max""element_size_max""element_size_max""element_size_max" may be found.

Attention: When the size is changed by calling the operator set_bar_code_paramset_bar_code_paramSetBarCodeParamSetBarCodeParamSetBarCodeParamset_bar_code_param, the consistency of the parameters 'element_size_min'"element_size_min""element_size_min""element_size_min""element_size_min""element_size_min" and 'element_size_max'"element_size_max""element_size_max""element_size_max""element_size_max""element_size_max" is verified. Both parameters should be set in the same call.

'element_size_min'"element_size_min""element_size_min""element_size_min""element_size_min""element_size_min":

Minimal size of the base bar code elements (also called 'modules' or 'narrow bars', depending on the specific bar code type), i.e., the minimal width of the narrowest bars and spaces for the specific bar code type. The value of this parameter is defined in pixels. For low resolution bar codes, the value should be reduced to 1.5, and in some cases even as low as 0.6. If the 'element_size_min'"element_size_min""element_size_min""element_size_min""element_size_min""element_size_min" is specified below 2.0 pixels an additional decoding attempt is made (see 'small_elements_robustness'"small_elements_robustness""small_elements_robustness""small_elements_robustness""small_elements_robustness""small_elements_robustness" for more details on this attempt). In the case of huge bar codes, the value should be increased, which results in a shorter execution time and fewer candidates.

Typical values: [1.2, ..., 10.0]

Value range: [0.6, ..., 64]

Default: 2.0

'element_size_max'"element_size_max""element_size_max""element_size_max""element_size_max""element_size_max":

Maximal size of the base bar code elements (also called 'modules' or 'narrow bars', depending on the specific bar code type), i.e., the maximal width of the narrowest bars and spaces for the specific bar code type. The value of 'element_size_max'"element_size_max""element_size_max""element_size_max""element_size_max""element_size_max" is defined in pixels. It should be adequately low such that two neighboring bar codes are not fused into a single one. On the other hand the value should be sufficiently high in order to find the complete bar code region.

Typical values: [4.0, ..., 60.0]

Value range: [1, ..., 256]

Default: 8.0

'element_size_variable'"element_size_variable""element_size_variable""element_size_variable""element_size_variable""element_size_variable":

In some bar code images, the smallest element size may vary across a given bar code object. These deformations might be caused by perspective projection or by deformations of the surface on which the bar code is printed (e.g., barrel distortion on a bottle). By default, the bar code reader cannot handle such distortions. However, if 'element_size_variable'"element_size_variable""element_size_variable""element_size_variable""element_size_variable""element_size_variable" is set to 'true'"true""true""true""true""true", the bar code reader tries to compensate for such distortions. Please note that in some situations it is still not possible to undistort the bar code image.

The parameter 'element_size_variable'"element_size_variable""element_size_variable""element_size_variable""element_size_variable""element_size_variable" applies to the following bar code types only:

Any other bar code type is unaffected by this parameter.

Values: ['false'"false""false""false""false""false", 'true'"true""true""true""true""true"]

Default: 'false'"false""false""false""false""false"

'barcode_height_min'"barcode_height_min""barcode_height_min""barcode_height_min""barcode_height_min""barcode_height_min":

Minimal bar code height. The value of this parameter is defined in pixels. The default value is -1, meaning that the bar code reader automatically derives a reasonable height from the other parameters. Just for very flat and very high bar codes a manual adjustment of this parameter can be necessary. In the case of a bar code with a height of less than 16 pixels the respective height should be set by the user. Note, that the minimal value is 8 pixels. If the bar code is very high, i.e. 70 pixels and more, manually adjusting to the respective height can lead to a speed-up of the subsequent finding and reading operation.

Typical values: [-1, 8, ..., 64]

Default: -1

'barcode_width_min'"barcode_width_min""barcode_width_min""barcode_width_min""barcode_width_min""barcode_width_min":

Minimal bar code width. The value of this parameter is defined in pixels. The width of a bar code depends on many factors:

If these properties are constant throughout the application, this parameter should be set in order to increase both speed and robustness. The default value is -1, meaning that the reader estimates a minimal bar code width based on symbology specifications and the parameter 'element_size_min'"element_size_min""element_size_min""element_size_min""element_size_min""element_size_min".

Typical values: [-1, 40, 50, 60, ...]

Default: -1

Scanning settings:

'num_scanlines'"num_scanlines""num_scanlines""num_scanlines""num_scanlines""num_scanlines":

Maximum number of scanlines used during the scanning of a (candidate) bar code. If 'num_scanlines'"num_scanlines""num_scanlines""num_scanlines""num_scanlines""num_scanlines" is not set (the parameter has a value of 0), the maximum number of scanlines is determined internally and it will be 10 for all single-row bar codes, 20 for GS1 DataBar Stacked and GS1 DataBar Stacked Omnidirectional, and 55 for GS1 DataBar Expanded Stacked. With this parameter, you can improve performance in two cases. In the first case, the image contains many false candidates. While the bar code itself is usually decoded after one or two scans (except for stacked bar codes, see below), a false candidate is scanned with the default value of 10 scanlines, which increases the runtime unnecessarily. Reducing the number of scanlines can therefore improve performance in images with many false candidates. As a rule of thumb, images with higher quality need less scanlines than images of lower quality. For an average image, a value between 2 and 5 should be sufficient. If a bar code can, however, not be detected after reducing the number of scanlines, the number has to be increased again. The second case concerns stacked bar codes (currently GS1 DataBar Stacked, GS1 DataBar Stacked Omnidirectional, and GS1 DataBar Expanded Stacked). Here, all scanlines are evaluated, in contrast to single-row bar codes (e.g., Code 128, EAN 13, or GS1 DataBar Limited) where the scanning stops after the code is decoded successfully. Since the scanning of the scanlines is actually one of the most time consuming parts of the find_bar_codefind_bar_codeFindBarCodeFindBarCodeFindBarCodefind_bar_code algorithm, adjusting 'num_scanlines'"num_scanlines""num_scanlines""num_scanlines""num_scanlines""num_scanlines" might result in essential performance improvements. This is especially valid for GS1 DataBar Expanded Stacked. A GS1 DataBar Expanded Stacked symbol might have up to 11 rows and therefore 55 scanlines are required to robustly detect all of them. If only symbols with smaller number of rows are expected, you can reduce 'num_scanlines'"num_scanlines""num_scanlines""num_scanlines""num_scanlines""num_scanlines", leaving 1.5 to 5 scanlines per row.

If this parameter is set to a value that is smaller than the specified 'min_identical_scanlines'"min_identical_scanlines""min_identical_scanlines""min_identical_scanlines""min_identical_scanlines""min_identical_scanlines" value, the value of the parameter 'min_identical_scanlines'"min_identical_scanlines""min_identical_scanlines""min_identical_scanlines""min_identical_scanlines""min_identical_scanlines" is automatically reduced to the value of the specified 'num_scanlines'"num_scanlines""num_scanlines""num_scanlines""num_scanlines""num_scanlines".

This parameter can be set specifically for different types of bar codes by using the operator set_bar_code_param_specificset_bar_code_param_specificSetBarCodeParamSpecificSetBarCodeParamSpecificSetBarCodeParamSpecificset_bar_code_param_specific.

Typical values: [0, 5, 10, 20, ... ]

Default: 0

'min_identical_scanlines'"min_identical_scanlines""min_identical_scanlines""min_identical_scanlines""min_identical_scanlines""min_identical_scanlines":

With this parameter, the probability can be lowered to read bar codes wrongly or in places where no bar codes is present. The parameter specifies the minimal number of decoded scanlines which return identical data to read the bar code successfully.

If this parameter is set to 0 (which is the default for all code types, except for '2/5 Industrial' and '2/5 Interleaved'), a bar code is considered decoded with the first successfully decoded scanline (in the case of stacked codes, there must be a successful scanline per symbol row). If 'majority_voting'"majority_voting""majority_voting""majority_voting""majority_voting""majority_voting" is enabled, a different scheme applies (see the section on 'majority_voting'"majority_voting""majority_voting""majority_voting""majority_voting""majority_voting" for more details). Increasing this parameter to 2 or more is particularly useful, to prevent that a bar code is detected accidentally. This can typically happen if a scanline extracted erroneous or false edges out of a low quality image or in a very noisy image fragment. This parameter can be used to reduce the number of false detections also in cases where a specific bar code type is searched for in an image containing symbols from other bar code symbologies.

Note that the default value of this parameter is 0 for most code types. However, the default value is 2 for '2/5 Industrial'"2/5 Industrial""2/5 Industrial""2/5 Industrial""2/5 Industrial""2/5 Industrial" and '2/5 Interleaved'"2/5 Interleaved""2/5 Interleaved""2/5 Interleaved""2/5 Interleaved""2/5 Interleaved" bar code types. The reason for this is that these bar code types are easily misread in other structures like clutter and text with a 'min_identical_scanlines'"min_identical_scanlines""min_identical_scanlines""min_identical_scanlines""min_identical_scanlines""min_identical_scanlines" setting of 1.

This parameter can be set specifically for different types of bar codes by using the operator set_bar_code_param_specificset_bar_code_param_specificSetBarCodeParamSpecificSetBarCodeParamSpecificSetBarCodeParamSpecificset_bar_code_param_specific.

If merged scanlines (see 'merge_scanlines'"merge_scanlines""merge_scanlines""merge_scanlines""merge_scanlines""merge_scanlines") are used, 'min_identical_scanlines'"min_identical_scanlines""min_identical_scanlines""min_identical_scanlines""min_identical_scanlines""min_identical_scanlines" specifies in how many scanlines each edges must be recognized successfully (see get_bar_code_objectget_bar_code_objectGetBarCodeObjectGetBarCodeObjectGetBarCodeObjectget_bar_code_object, 'scanlines_merged_edges'"scanlines_merged_edges""scanlines_merged_edges""scanlines_merged_edges""scanlines_merged_edges""scanlines_merged_edges").

Typical values: [0, 2, 3, ...]

Default:
Bar code Type min_identical_scanlines
2/5 Industrial 2
2/5 Interleaved 2
all others 0
'majority_voting'"majority_voting""majority_voting""majority_voting""majority_voting""majority_voting":

This parameter controls the decode result selection mode. If this parameter is 'false'"false""false""false""false""false", a successful decode result is returned if the minimal number of identically decoded scanlines are found (see section on 'min_identical_scanlines'"min_identical_scanlines""min_identical_scanlines""min_identical_scanlines""min_identical_scanlines""min_identical_scanlines" for more details). By setting this parameter to 'true'"true""true""true""true""true" a majority voting scheme is used to select between different scanline results. The result which is decoded by the majority of all scanlines is selected as the overall result. Please note that setting this parameter to 'true'"true""true""true""true""true" leads to a slightly increased runtime since nearly all scanlines have to be considered instead of just the minimal identical ones.

In order to reduce false decode results this parameter should be enabled.

This parameter is only supported for non-stacked bar code types.

List of values: ['false'"false""false""false""false""false", 'true'"true""true""true""true""true"]

Default: 'false'"false""false""false""false""false"

'stop_after_result_num'"stop_after_result_num""stop_after_result_num""stop_after_result_num""stop_after_result_num""stop_after_result_num":

Number of successfully decoded bar codes after which the decoding will stop. If this parameter is not set (has a value of 0), all bar code candidates are decoded. Typically, this parameter is set if the number of expected bar codes is known in advance. Then the bar code reader can abort further decoding of candidates after a certain number of bar codes has been found and the overall decoding time will decrease.

This parameter can be set specifically for different types of bar codes by using the operator set_bar_code_param_specificset_bar_code_param_specificSetBarCodeParamSpecificSetBarCodeParamSpecificSetBarCodeParamSpecificset_bar_code_param_specific.

Typical values: [0, 1, 2, ...]

Default: 0

'orientation'"orientation""orientation""orientation""orientation""orientation":

Expected bar code orientation. A potential (candidate) bar code contains bars with similar orientation. The 'orientation'"orientation""orientation""orientation""orientation""orientation" and 'orientation_tol'"orientation_tol""orientation_tol""orientation_tol""orientation_tol""orientation_tol" parameters are used to specify the range ['orientation'"orientation""orientation""orientation""orientation""orientation"-'orientation_tol'"orientation_tol""orientation_tol""orientation_tol""orientation_tol""orientation_tol", 'orientation'"orientation""orientation""orientation""orientation""orientation"+'orientation_tol'"orientation_tol""orientation_tol""orientation_tol""orientation_tol""orientation_tol"]. find_bar_codefind_bar_codeFindBarCodeFindBarCodeFindBarCodefind_bar_code processes a candidate bar code only when the average orientation of its bars lies in this range. If the bar codes are expected to appear only in certain orientations in the processed images, you can reduce the orientation range adequately. This enables an early identification of false candidates and hence shorter execution times. This adjustment can be used for images with a lot of texture, which includes fragments tending to result in false bar code candidates.

The actual orientation angle of a bar code is explained with get_bar_code_resultget_bar_code_resultGetBarCodeResultGetBarCodeResultGetBarCodeResultget_bar_code_result(...,'orientation'"orientation""orientation""orientation""orientation""orientation",...) with the only difference that for the early identification of false candidates the reading direction of the bar codes is ignored, which results in relevant orientation values only in the range [-90.0 ... 90.0]. The only exception to this rule constitutes the bar code symbol PharmaCode, which possesses a forward and a backward reading direction at the same time: here, 'orientation'"orientation""orientation""orientation""orientation""orientation" can take values in the range [-180.0 ... 180.0] and the decoded result is unique corresponding to just one reading direction.

This parameter can be set specifically for different types of bar codes by using the operator set_bar_code_param_specificset_bar_code_param_specificSetBarCodeParamSpecificSetBarCodeParamSpecificSetBarCodeParamSpecificset_bar_code_param_specific.

Typical values: [-90.0, ..., 90.0]

Default: 0.0

'orientation_tol'"orientation_tol""orientation_tol""orientation_tol""orientation_tol""orientation_tol":

Orientation tolerance. Please refer to the explanation of 'orientation'"orientation""orientation""orientation""orientation""orientation" parameter for further information. As explained there, relevant orientation values are only in the range of [-90.0 ... 90.0], which means that with 'orientation_tol'"orientation_tol""orientation_tol""orientation_tol""orientation_tol""orientation_tol" = 90 the whole range is spanned. Therefore, valid values for 'orientation_tol'"orientation_tol""orientation_tol""orientation_tol""orientation_tol""orientation_tol" are only in the range of [0.0 ... 90.0]. The default value 90.0 means that no restriction on the bar code candidates is performed.

This parameter can be set specifically for different types of bar codes by using the operator set_bar_code_param_specificset_bar_code_param_specificSetBarCodeParamSpecificSetBarCodeParamSpecificSetBarCodeParamSpecificset_bar_code_param_specific.

Typical values: [0.0, ..., 90.0]

Default: 90.0

'quiet_zone'"quiet_zone""quiet_zone""quiet_zone""quiet_zone""quiet_zone":

Enforces the verification of the quiet zones of a bar code symbol. When enabled, scanlines are rejected when unexpected bars are detected within the quiet zones both left or right of a detected bar code sequence. Possible values:

The quiet zone verification is very useful when using the bar code reader in multi-type or 'auto' reading mode. It prevents that simple bar code types are detected inside of a bar sequence representing a longer bar code or inside another, typically more complex bar code type. Usually, values between 2 and 4 achieve optimal results by effectively suppressing false bar codes, but still tolerating small disturbances, textures, label edges, etc. next to the symbol.

This parameter can be set specifically for different types of bar codes by using the operator set_bar_code_param_specificset_bar_code_param_specificSetBarCodeParamSpecificSetBarCodeParamSpecificSetBarCodeParamSpecificset_bar_code_param_specific.

Note: The quiet zones serve as a check, that no bar is detected within this zones, but it is not required that the quiet zones are contained as a whole in the image. This means, if a set quiet zone is not contained as a whole, only the part within the image is assessed and the part outside the image is assumed to be free of defects.

List of values: 'false'"false""false""false""false""false", 'true'"true""true""true""true""true", 'tolerant'"tolerant""tolerant""tolerant""tolerant""tolerant", 1, ..., 100

Default: 'false'"false""false""false""false""false"

'start_stop_tolerance'"start_stop_tolerance""start_stop_tolerance""start_stop_tolerance""start_stop_tolerance""start_stop_tolerance":

Enforces a tolerant ('high'"high""high""high""high""high") or strict ('low'"low""low""low""low""low") searching criteria while inspecting a scanline for a start or stop pattern, respectively. A more tolerant criteria will generally increase the detection chances of a bar code, provided that a clear symbol is imaged in the processed image. On the other side, it might result in false detections in noisy images or images containing symbols from other symbologies. Less tolerant criteria increase the robustness against false detections, but might reduce the general detection rate. Currently, there are two distinct criteria implemented only for Code 128 and GS1-128.

This parameter can be set specifically for different types of bar codes by using the operator set_bar_code_param_specificset_bar_code_param_specificSetBarCodeParamSpecificSetBarCodeParamSpecificSetBarCodeParamSpecificset_bar_code_param_specific. As already mentioned, currently this makes a difference only for Code 128 and GS1-128.

List of values: ['high'"high""high""high""high""high", 'low'"low""low""low""low""low"]

Default: 'high'"high""high""high""high""high"

'min_code_length'"min_code_length""min_code_length""min_code_length""min_code_length""min_code_length":

Minimal number of decoded characters. If a bar code is found with a code length below 'min_code_length'"min_code_length""min_code_length""min_code_length""min_code_length""min_code_length", the result is discarded and not returned by find_bar_codefind_bar_codeFindBarCodeFindBarCodeFindBarCodefind_bar_code or decode_bar_code_rectangle2decode_bar_code_rectangle2DecodeBarCodeRectangle2DecodeBarCodeRectangle2DecodeBarCodeRectangle2decode_bar_code_rectangle2. This parameter is useful to reduce the number of false reads in applications where the minimal number of characters is known in advance.

Note that the default value of this parameter is 0 for most code types. However, the default value is 3 for '2/5 Industrial'"2/5 Industrial""2/5 Industrial""2/5 Industrial""2/5 Industrial""2/5 Industrial" and '2/5 Interleaved'"2/5 Interleaved""2/5 Interleaved""2/5 Interleaved""2/5 Interleaved""2/5 Interleaved" bar code types. The reason for this is that these bar code types are easily misread in other structures like clutter and text with a code length of 2.

This parameter can be set specifically for different types of bar codes by using the operator set_bar_code_param_specificset_bar_code_param_specificSetBarCodeParamSpecificSetBarCodeParamSpecificSetBarCodeParamSpecificset_bar_code_param_specific.

Typical values: [0, 1, 2, ...]

Default:
Bar code Type min_code_length
2/5 Industrial 3
2/5 Interleaved 3
all others 0
'merge_scanlines'"merge_scanlines""merge_scanlines""merge_scanlines""merge_scanlines""merge_scanlines":

If not enough scanlines (see 'min_identical_scanlines'"min_identical_scanlines""min_identical_scanlines""min_identical_scanlines""min_identical_scanlines""min_identical_scanlines") can be read successfully, i.e., because the bar code is partly occluded or damaged, an attempt is being made to merge the existing scanlines. Then, these merged scanlines are decoded again. This additional decoding step is only performed for non-stacked bar code types and can be disabled for performance reasons.

List of values: ['true'"true""true""true""true""true", 'false'"false""false""false""false""false"]

Default: 'true'"true""true""true""true""true"

'small_elements_robustness'"small_elements_robustness""small_elements_robustness""small_elements_robustness""small_elements_robustness""small_elements_robustness":

If not enough scanlines (see 'min_identical_scanlines'"min_identical_scanlines""min_identical_scanlines""min_identical_scanlines""min_identical_scanlines""min_identical_scanlines") can be read successfully, i.e., because the bar code contains small elements (smaller than 2.0 pixels in element size), an attempt is being made to read the code with an advanced algorithm which tries to solve the low resolution problem.

This additional decoding attempt is only performed for non-stacked bar code types and if the specified 'element_size_min'"element_size_min""element_size_min""element_size_min""element_size_min""element_size_min" is smaller than 2.0 pixels.

The status result of this attempt can be retrieved by calling the operator get_bar_code_resultget_bar_code_resultGetBarCodeResultGetBarCodeResultGetBarCodeResultget_bar_code_result with 'status_small_elements_robustness'"status_small_elements_robustness""status_small_elements_robustness""status_small_elements_robustness""status_small_elements_robustness""status_small_elements_robustness".

In case of very small elements (smaller than 1.3 pixels in element size) it is beneficial if the camera sensor is rotated slightly with respect to the bar code (e.g., around 7 degrees). This is important because in such low resolution cases the bar code information is contained in multiple rows/columns of the perceived image only if it is rotated. See the following two figures for examples.

A bar code at 0.9 element size without sensor rotation. The relevant information of the bar code is not present in the image.
The same bar code as in the previous figure with sensor rotation. The rows of the image contain more information about the code and thus it can be decoded successfully.

Another important advice is to reduce the amount of blur introduced by the optical system.

The input image should not be preprocessed with filter operations such as emphasizeemphasizeEmphasizeEmphasizeEmphasizeemphasize, zoom_image_sizezoom_image_sizeZoomImageSizeZoomImageSizeZoomImageSizezoom_image_size or mean_imagemean_imageMeanImageMeanImageMeanImagemean_image. Those operators would remove important information.

Note, if optical conditions are optimal (small amount of blur and slight rotation with respect to the bar code) it is possible to read bar codes as small as 0.6 pixels in element size.

This feature is only compatible with byte input images and can be disabled for performance reasons.

List of values: ['true'"true""true""true""true""true", 'false'"false""false""false""false""false"]

Default: 'true'"true""true""true""true""true"

Appearance of the bar code in the image:

'meas_thresh'"meas_thresh""meas_thresh""meas_thresh""meas_thresh""meas_thresh":

'meas_thresh'"meas_thresh""meas_thresh""meas_thresh""meas_thresh""meas_thresh" defines a threshold which is a relative value with respect to the dynamic range of the scanline pixels. The bar-space-sequence of a bar code is determined with a scanline measuring the position of the edges. Finding these edges requires the mentioned threshold. In the case of disturbances in the bar code region or a high noise level, the value of 'meas_thresh'"meas_thresh""meas_thresh""meas_thresh""meas_thresh""meas_thresh" should be increased.

Typical values: [0.05, ..., 0.2]

Value range: (0.0, 1.0] - without 0.0

Default: 0.05

'meas_thresh_abs'"meas_thresh_abs""meas_thresh_abs""meas_thresh_abs""meas_thresh_abs""meas_thresh_abs":

If a scanline is laid in an image region with no or just very small gray value dynamic range (e.g., in a white region with all gray values near 255), the edge detection threshold based on 'meas_thresh'"meas_thresh""meas_thresh""meas_thresh""meas_thresh""meas_thresh" would be computed unreasonably small. This leads typically to the detection of a big amount of false edges. 'meas_thresh_abs'"meas_thresh_abs""meas_thresh_abs""meas_thresh_abs""meas_thresh_abs""meas_thresh_abs" is used to prevent such misdetections. If the threshold value based on 'meas_thresh'"meas_thresh""meas_thresh""meas_thresh""meas_thresh""meas_thresh" gets smaller than the value of 'meas_thresh_abs'"meas_thresh_abs""meas_thresh_abs""meas_thresh_abs""meas_thresh_abs""meas_thresh_abs", the latter is used as threshold instead. By default, 'meas_thresh_abs'"meas_thresh_abs""meas_thresh_abs""meas_thresh_abs""meas_thresh_abs""meas_thresh_abs" is set to 5.0. A greater value might be more appropriate for images with high noise levels. On the other hand, in noise-free images with very weak contrast, this parameter might disturb the detection of real edges, so it might be necessary to reduce it or even completely disable it by setting it to 0.0.

Typical values: [0.0, ..., 10.0]

Value range: [0.0, .., 65535]

Default: 5.0

'contrast_min'"contrast_min""contrast_min""contrast_min""contrast_min""contrast_min":

Minimal contrast between the foreground and the background of the bar code elements. Setting this parameter to values greater than 5 will help the operator find_bar_codefind_bar_codeFindBarCodeFindBarCodeFindBarCodefind_bar_code to optimize the candidate region search. find_bar_codefind_bar_codeFindBarCodeFindBarCodeFindBarCodefind_bar_code will reject all candidate regions with a contrast value below 'contrast_min'"contrast_min""contrast_min""contrast_min""contrast_min""contrast_min". Hence, setting a high 'contrast_min'"contrast_min""contrast_min""contrast_min""contrast_min""contrast_min" value will improve the runtime performance of find_bar_codefind_bar_codeFindBarCodeFindBarCodeFindBarCodefind_bar_code. However, please note, that all bar codes with a contrast value below 'contrast_min'"contrast_min""contrast_min""contrast_min""contrast_min""contrast_min" will not be read. The calculated contrast value is an approximation in order to speed up the execution time. Try to set a lower threshold for 'contrast_min'"contrast_min""contrast_min""contrast_min""contrast_min""contrast_min" in order to find bar codes which might get rejected and have a contrast value that is close to the specified 'contrast_min'"contrast_min""contrast_min""contrast_min""contrast_min""contrast_min".

Typical values: [0, 40, 90, 120, ... ]

Default: 0

Bar code specific values:

'check_char'"check_char""check_char""check_char""check_char""check_char":

Bar codes with an optional check character are interpreted according to this parameter. These bar code types include, e.g., Code 39, Codabar, 2/5 Industrial and 2/5 Interleaved. The default setting of 'absent'"absent""absent""absent""absent""absent" assumes that no check character is present. In this case, no check is performed and all characters are returned as data.

When set to 'present'"present""present""present""present""present", a check character is expected and used to verify the correctness of the bar code. If the check sum matches, the check character itself is stripped from the data. If this stripping is undesired, the mode 'preserved'"preserved""preserved""preserved""preserved""preserved" allows to verify the bar code while still keeping the check character in the data. In the case the check sum does not match, no bar code result is returned.

For bar code types with a mandatory check character the parameter 'check_char'"check_char""check_char""check_char""check_char""check_char" is set to 'present'"present""present""present""present""present". However, if the check character is removed from the data or stays, depends on the standard of the specific code type. Such code types include, e.g., Code 128, EAN-8, EAN-13, and UPC-A.

This parameter can be set specifically for different types of bar codes by using the operator set_bar_code_param_specificset_bar_code_param_specificSetBarCodeParamSpecificSetBarCodeParamSpecificSetBarCodeParamSpecificset_bar_code_param_specific.

List of values: ['absent'"absent""absent""absent""absent""absent", 'present'"present""present""present""present""present", 'preserved'"preserved""preserved""preserved""preserved""preserved"]

Default: 'absent'"absent""absent""absent""absent""absent"

'composite_code'"composite_code""composite_code""composite_code""composite_code""composite_code":

Most of the GS1 conform bar codes can have an additional 2D GS1 Composite code component appended. If 'composite_code'"composite_code""composite_code""composite_code""composite_code""composite_code" is set to 'CC-A/B'"CC-A/B""CC-A/B""CC-A/B""CC-A/B""CC-A/B" the composite component will be found and decoded. By default, 'composite_code'"composite_code""composite_code""composite_code""composite_code""composite_code" is set to 'none'"none""none""none""none""none" and thus it is disabled. If the searched bar code symbol has no attached composite component, just the result of the bar code itself is returned by find_bar_codefind_bar_codeFindBarCodeFindBarCodeFindBarCodefind_bar_code. Currently, composite codes are supported only for bar codes of the GS1 DataBar family.

This parameter can be set specifically for different types of bar codes by using the operator set_bar_code_param_specificset_bar_code_param_specificSetBarCodeParamSpecificSetBarCodeParamSpecificSetBarCodeParamSpecificset_bar_code_param_specific.

List of values: ['none'"none""none""none""none""none", 'CC-A/B'"CC-A/B""CC-A/B""CC-A/B""CC-A/B""CC-A/B"]

Default: 'none'"none""none""none""none""none"

'upce_encodation'"upce_encodation""upce_encodation""upce_encodation""upce_encodation""upce_encodation":

For UPC-E bar codes, different output formats can be used. By default, 'upce_encodation'"upce_encodation""upce_encodation""upce_encodation""upce_encodation""upce_encodation" is set to 'ucc-12'"ucc-12""ucc-12""ucc-12""ucc-12""ucc-12" and the decoded string will be returned in UCC-12 format (consisting of 12 digits). If 'upce_encodation'"upce_encodation""upce_encodation""upce_encodation""upce_encodation""upce_encodation" is set to 'zero-suppressed'"zero-suppressed""zero-suppressed""zero-suppressed""zero-suppressed""zero-suppressed", the result will be returned in zero-suppressed format (with suppressed zeros at defined places). This format consists of a leading zero, six encoded digits, and an implicitly encoded check digit. This corresponds to the format demanded by ISO/IEC 15420:2009 standard.

This parameter can be set specifically for UPC-E bar codes by using the operator set_bar_code_param_specificset_bar_code_param_specificSetBarCodeParamSpecificSetBarCodeParamSpecificSetBarCodeParamSpecificset_bar_code_param_specific.

List of values: ['ucc-12'"ucc-12""ucc-12""ucc-12""ucc-12""ucc-12", 'zero-suppressed'"zero-suppressed""zero-suppressed""zero-suppressed""zero-suppressed""zero-suppressed"]

Default: 'ucc-12'"ucc-12""ucc-12""ucc-12""ucc-12""ucc-12"

Training:

Besides setting the model parameters manually with set_bar_code_paramset_bar_code_paramSetBarCodeParamSetBarCodeParamSetBarCodeParamset_bar_code_param, the model can also be trained with find_bar_codefind_bar_codeFindBarCodeFindBarCodeFindBarCodefind_bar_code based on one or several sample images. For this, a bar code model must be created in training mode or an existing bar code model must be put into training mode by passing the generic parameter 'train'"train""train""train""train""train" in GenParamNameGenParamNameGenParamNameGenParamNamegenParamNamegen_param_name of set_bar_code_paramset_bar_code_paramSetBarCodeParamSetBarCodeParamSetBarCodeParamset_bar_code_param. The corresponding value passed in GenParamValueGenParamValueGenParamValueGenParamValuegenParamValuegen_param_value determines the model parameters that should be learned. The following values are possible:

'all'"all""all""all""all""all":

Train all possible model parameters.

'element_size_min'"element_size_min""element_size_min""element_size_min""element_size_min""element_size_min":

Minimal size of the base bar code elements. This setting activates the training mode for the parameter 'element_size_min'"element_size_min""element_size_min""element_size_min""element_size_min""element_size_min".

'element_size_max'"element_size_max""element_size_max""element_size_max""element_size_max""element_size_max":

Maximal size of the base bar code elements. This setting activates the training mode for the parameter 'element_size_max'"element_size_max""element_size_max""element_size_max""element_size_max""element_size_max".

'barcode_width_min'"barcode_width_min""barcode_width_min""barcode_width_min""barcode_width_min""barcode_width_min":

Minimal bar code width. This setting activates the training mode for the parameter 'barcode_width_min'"barcode_width_min""barcode_width_min""barcode_width_min""barcode_width_min""barcode_width_min".

'meas_thresh'"meas_thresh""meas_thresh""meas_thresh""meas_thresh""meas_thresh":

Relative threshold for measuring the edge position within a scanline. This setting activates the training mode for the parameter 'meas_thresh'"meas_thresh""meas_thresh""meas_thresh""meas_thresh""meas_thresh".

'meas_thresh_abs'"meas_thresh_abs""meas_thresh_abs""meas_thresh_abs""meas_thresh_abs""meas_thresh_abs":

Absolute threshold for measuring the edge position within a scanline. This setting activates the training mode for the parameter 'meas_thresh_abs'"meas_thresh_abs""meas_thresh_abs""meas_thresh_abs""meas_thresh_abs""meas_thresh_abs".

'orientation'"orientation""orientation""orientation""orientation""orientation":

Orientation of the bar code. This setting activates the training mode for the parameters 'orientation'"orientation""orientation""orientation""orientation""orientation" and 'orientation_tol'"orientation_tol""orientation_tol""orientation_tol""orientation_tol""orientation_tol". After ending the training the value for 'orientation_tol'"orientation_tol""orientation_tol""orientation_tol""orientation_tol""orientation_tol" can be increased by a tolerance value to be able to find bar codes with orientations slightly beyond the trained orientations.

It is possible to train several of these parameters in one call of find_bar_codefind_bar_codeFindBarCodeFindBarCodeFindBarCodefind_bar_code by passing the generic parameter 'train'"train""train""train""train""train" in set_bar_code_paramset_bar_code_paramSetBarCodeParamSetBarCodeParamSetBarCodeParamset_bar_code_param in a tuple more than once in conjunction with the appropriate parameters: e.g., GenParamNameGenParamNameGenParamNameGenParamNamegenParamNamegen_param_name = ['train','train']["train","train"]["train","train"]["train","train"]["train","train"]["train","train"] and GenParamValueGenParamValueGenParamValueGenParamValuegenParamValuegen_param_value = ['element_size_min','element_size_max']["element_size_min","element_size_max"]["element_size_min","element_size_max"]["element_size_min","element_size_max"]["element_size_min","element_size_max"]["element_size_min","element_size_max"]. Furthermore, in conjunction with 'train'"train""train""train""train""train" = 'all'"all""all""all""all""all" it is possible to exclude single parameters from training explicitly again by passing 'train'"train""train""train""train""train" more than once. The names of the parameters to exclude, however, must be prefixed by '~'"~""~""~""~""~": GenParamNameGenParamNameGenParamNameGenParamNamegenParamNamegen_param_name = ['train','train']["train","train"]["train","train"]["train","train"]["train","train"]["train","train"] and GenParamValueGenParamValueGenParamValueGenParamValuegenParamValuegen_param_value = ['all','~orientation']["all","~orientation"]["all","~orientation"]["all","~orientation"]["all","~orientation"]["all","~orientation"], e.g., trains all parameters except the orientation.

Afterwards, the operator find_bar_codefind_bar_codeFindBarCodeFindBarCodeFindBarCodefind_bar_code has to be called for every image to be trained.

For training the model, the following aspects should be considered:

Miscellaneous:

'timeout'"timeout""timeout""timeout""timeout""timeout":

By the use of this parameter, it is possible to abort find_bar_codefind_bar_codeFindBarCodeFindBarCodeFindBarCodefind_bar_code after a defined period in milliseconds. This is especially useful in cases where a maximum cycle time has to be ensured. All results gained before the timeout can be accessed by get_bar_code_resultget_bar_code_resultGetBarCodeResultGetBarCodeResultGetBarCodeResultget_bar_code_result. Passing values less or equal zero implies a deactivation of the timeout (default).

The temporal accuracy of this timeout is about 10 ms. It depends on several factors including the speed of your computer and the 'timer_mode'"timer_mode""timer_mode""timer_mode""timer_mode""timer_mode" set via set_systemset_systemSetSystemSetSystemSetSystemset_system.

find_bar_codefind_bar_codeFindBarCodeFindBarCodeFindBarCodefind_bar_code does not raise an exception if a timeout occurs. To check whether find_bar_codefind_bar_codeFindBarCodeFindBarCodeFindBarCodefind_bar_code has been aborted, check the parameter 'aborted'"aborted""aborted""aborted""aborted""aborted" in get_bar_code_resultget_bar_code_resultGetBarCodeResultGetBarCodeResultGetBarCodeResultget_bar_code_result.

Note that the timeout is ignored if find_bar_codefind_bar_codeFindBarCodeFindBarCodeFindBarCodefind_bar_code runs in training mode.

Typical values: ['false'"false""false""false""false""false", -1, 20, ..., 100]

Default: 'false'"false""false""false""false""false"

'abort'"abort""abort""abort""abort""abort":

Using this option, it is possible to abort find_bar_codefind_bar_codeFindBarCodeFindBarCodeFindBarCodefind_bar_code from another thread. When set_bar_code_paramset_bar_code_paramSetBarCodeParamSetBarCodeParamSetBarCodeParamset_bar_code_param is called with 'abort'"abort""abort""abort""abort""abort", an instance of find_bar_codefind_bar_codeFindBarCodeFindBarCodeFindBarCodefind_bar_code with the model BarCodeHandleBarCodeHandleBarCodeHandleBarCodeHandlebarCodeHandlebar_code_handle running in another thread is requested to abort. If there is no find_bar_codefind_bar_codeFindBarCodeFindBarCodeFindBarCodefind_bar_code running with this model, nothing happens.

The operator find_bar_codefind_bar_codeFindBarCodeFindBarCodeFindBarCodefind_bar_code might not return immediately. It has to reach a cancellation point to ensure a proper cleanup. Depending on different factors like the computer performance this may take up to 10 ms.

All decoded results until this moment, are still returned. Note that the parameter is ignored if find_bar_codefind_bar_codeFindBarCodeFindBarCodeFindBarCodefind_bar_code runs in training mode.

Note: This is the only action with a bar code handle, which can be used from different threads without requiring additional synchronization.

Default: 'true'"true""true""true""true""true" (The value is not processed.)

'persistence'"persistence""persistence""persistence""persistence""persistence":

Setting the model in persistence mode to 1, makes it store some intermediate results during bar code decoding. These results are required if the bar code print quality has to be assessed (get_bar_code_resultget_bar_code_resultGetBarCodeResultGetBarCodeResultGetBarCodeResultget_bar_code_result with 'quality_isoiec15416'"quality_isoiec15416""quality_isoiec15416""quality_isoiec15416""quality_isoiec15416""quality_isoiec15416") or the decoding scanlines have to be inspected (get_bar_code_objectget_bar_code_objectGetBarCodeObjectGetBarCodeObjectGetBarCodeObjectget_bar_code_object with 'scanlines_all'"scanlines_all""scanlines_all""scanlines_all""scanlines_all""scanlines_all" or 'scanlines_valid'"scanlines_valid""scanlines_valid""scanlines_valid""scanlines_valid""scanlines_valid"). Yet, enabling the 'persistence'"persistence""persistence""persistence""persistence""persistence" mode results in increased memory requirements for the bar code model structures.

List of values: [0, 1]

Default: 0

Execution Information

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

BarCodeHandleBarCodeHandleBarCodeHandleBarCodeHandlebarCodeHandlebar_code_handle (input_control, state is modified)  barcode HBarCode, HTupleHHandleHTupleHtuple (handle) (IntPtr) (HHandle) (handle)

Handle of the bar code model.

GenParamNameGenParamNameGenParamNameGenParamNamegenParamNamegen_param_name (input_control)  attribute.name(-array) HTupleMaybeSequence[str]HTupleHtuple (string) (string) (HString) (char*)

Names of the generic parameters that shall be adjusted for finding and decoding bar codes.

Default value: 'element_size_min' "element_size_min" "element_size_min" "element_size_min" "element_size_min" "element_size_min"

List of values: 'abort'"abort""abort""abort""abort""abort", 'barcode_height_min'"barcode_height_min""barcode_height_min""barcode_height_min""barcode_height_min""barcode_height_min", 'barcode_width_min'"barcode_width_min""barcode_width_min""barcode_width_min""barcode_width_min""barcode_width_min", 'check_char'"check_char""check_char""check_char""check_char""check_char", 'composite_code'"composite_code""composite_code""composite_code""composite_code""composite_code", 'contrast_min'"contrast_min""contrast_min""contrast_min""contrast_min""contrast_min", 'element_size_max'"element_size_max""element_size_max""element_size_max""element_size_max""element_size_max", 'element_size_min'"element_size_min""element_size_min""element_size_min""element_size_min""element_size_min", 'element_size_variable'"element_size_variable""element_size_variable""element_size_variable""element_size_variable""element_size_variable", 'majority_voting'"majority_voting""majority_voting""majority_voting""majority_voting""majority_voting", 'meas_thresh'"meas_thresh""meas_thresh""meas_thresh""meas_thresh""meas_thresh", 'meas_thresh_abs'"meas_thresh_abs""meas_thresh_abs""meas_thresh_abs""meas_thresh_abs""meas_thresh_abs", 'merge_scanlines'"merge_scanlines""merge_scanlines""merge_scanlines""merge_scanlines""merge_scanlines", 'min_code_length'"min_code_length""min_code_length""min_code_length""min_code_length""min_code_length", 'min_identical_scanlines'"min_identical_scanlines""min_identical_scanlines""min_identical_scanlines""min_identical_scanlines""min_identical_scanlines", 'num_scanlines'"num_scanlines""num_scanlines""num_scanlines""num_scanlines""num_scanlines", 'orientation'"orientation""orientation""orientation""orientation""orientation", 'orientation_tol'"orientation_tol""orientation_tol""orientation_tol""orientation_tol""orientation_tol", 'persistence'"persistence""persistence""persistence""persistence""persistence", 'quiet_zone'"quiet_zone""quiet_zone""quiet_zone""quiet_zone""quiet_zone", 'small_elements_robustness'"small_elements_robustness""small_elements_robustness""small_elements_robustness""small_elements_robustness""small_elements_robustness", 'start_stop_tolerance'"start_stop_tolerance""start_stop_tolerance""start_stop_tolerance""start_stop_tolerance""start_stop_tolerance", 'stop_after_result_num'"stop_after_result_num""stop_after_result_num""stop_after_result_num""stop_after_result_num""stop_after_result_num", 'timeout'"timeout""timeout""timeout""timeout""timeout", 'train'"train""train""train""train""train", 'upce_encodation'"upce_encodation""upce_encodation""upce_encodation""upce_encodation""upce_encodation"

GenParamValueGenParamValueGenParamValueGenParamValuegenParamValuegen_param_value (input_control)  attribute.value(-array) HTupleMaybeSequence[Union[float, int, str]]HTupleHtuple (real / integer / string) (double / int / long / string) (double / Hlong / HString) (double / Hlong / char*)

Values of the generic parameters that are adjusted for finding and decoding bar codes.

Default value: 8

Suggested values: 0, 0.1, 1, 1.5, 2, 8, 32, 45, 'true'"true""true""true""true""true", 'false'"false""false""false""false""false", 'present'"present""present""present""present""present", 'absent'"absent""absent""absent""absent""absent", 'none'"none""none""none""none""none", 'CC-A/B'"CC-A/B""CC-A/B""CC-A/B""CC-A/B""CC-A/B", 'auto'"auto""auto""auto""auto""auto", 'high'"high""high""high""high""high", 'low'"low""low""low""low""low", 'ucc-12'"ucc-12""ucc-12""ucc-12""ucc-12""ucc-12", 'zero-suppressed'"zero-suppressed""zero-suppressed""zero-suppressed""zero-suppressed""zero-suppressed"

Result

The operator set_bar_code_paramset_bar_code_paramSetBarCodeParamSetBarCodeParamSetBarCodeParamset_bar_code_param returns the value TRUE if the given parameters are correct. Otherwise, an exception will be raised.

Possible Predecessors

create_bar_code_modelcreate_bar_code_modelCreateBarCodeModelCreateBarCodeModelCreateBarCodeModelcreate_bar_code_model

Possible Successors

find_bar_codefind_bar_codeFindBarCodeFindBarCodeFindBarCodefind_bar_code

Alternatives

set_bar_code_param_specificset_bar_code_param_specificSetBarCodeParamSpecificSetBarCodeParamSpecificSetBarCodeParamSpecificset_bar_code_param_specific

Module

Bar Code