Operator Reference
Bar Code
This chapter provides an introduction to bar codes and the most important terms used when finding and reading bar codes in HALCON.
Structure of linear (1D) bar codes
A bar code consists of several dark bars and bright spaces. For every bar code there is a smallest possible element, the narrowest possible bar or the narrowest possible space, which is called module. In general, the width of the bars and spaces is different, but always a multiple of the module. Several bars and spaces together form a pattern. This pattern encodes a symbol defined in a decoding table. The conventions how such a binary pattern encodes a symbol and the corresponding decoding table lead to the respective bar code type. In addition to the patterns encoding the symbols, there are also patterns with special tasks. Depending on the type there are further patterns which can or must be part of the bar code:
-
Quiet-zone: Zone in which no edges may occur. This zone is required before the start character and after the stop character to find the code.
-
Start and stop pattern: Define start, stop and direction. These patterns make it possible to read and decode the code from left to right as well as from right to left (and thus upside down).
-
Checksum: A digit which serves as a security check to ensure the code has been read correctly.
-
Guard pattern: Specific pattern, which can occur on the left, right, or in the center as additional symbol.
-
Finder patterns: Pattern used to locate the symbol.
-
Add-on symbol: Additional symbols for encoding of supplementary information. These symbols are encoded as bar codes with restricted length.
Structure of a composite bar code
Composite bar codes consist of the following elements:
-
Linear bar code: As described above.
-
2D Code: For more information about 2D codes we refer to the
“Solution Guide II-C - 2D Data Codes”
. -
Linking pattern: Combines the two codes mentioned before.
The following figure shows a schematic representation of a composite bar code.
Reading of a bar code
To be able to read a bar code in an image, it must be found first. The regions in which HALCON assumes a bar code are called candidates.
To read a candidate, different lines are laid through the region, called scanlines. Although theoretically a single scanline would be sufficient, one tries to decode the bar code along all scanlines. This increases the chance of decoding the code correctly. In addition, several successfully decoded scanlines allow additional plausibility checks, i.e., reading several scanlines equally decreases the chance of false positives.
The workflow and various examples showing how to read bar codes in HALCON
can be found in the “`Solution Guide I - Basics
.
List of Operators
clear_bar_code_model
- Delete a bar code model and free the allocated memory
create_bar_code_model
- Create a model of a bar code reader.
decode_bar_code_rectangle2
- Decode bar code symbols within a rectangle.
deserialize_bar_code_model
- Deserialize a bar code model.
find_bar_code
- Detect and read bar code symbols in an image.
get_bar_code_object
- Access iconic objects that were created during the search or decoding of bar code symbols.
get_bar_code_param
- Get one or several parameters that describe the bar code model.
get_bar_code_param_specific
- Get parameters that are used by the bar code reader when processing a specific bar code type.
get_bar_code_result
- Get the alphanumerical results that were accumulated during the decoding of bar code symbols.
query_bar_code_params
- Get the names of the parameters that can be used in set_bar_code* and get_bar_code* operators for a given bar code model
read_bar_code_model
- Read a bar code model from a file and create a new model.
serialize_bar_code_model
- Serialize a bar code model.
set_bar_code_param
- Set selected parameters of the bar code model.
set_bar_code_param_specific
- Set selected parameters of the bar code model for selected bar code types
write_bar_code_model
- Write a bar code model to a file.