ETcVn2dCodeSearchStrategy

Offers search strategies for 2d code reading (multiple TCVN_CSS_XXX_INVERTED or multiple TCVN_CSS_XXX_FLIPPED cannot be combined).

Syntax

Definition:

enum ETcVn2dCodeSearchStrategy : ULONG
{
    CSS_DEFAULT            = 1,
    CSS_ONLY_NOT_INVERTED  = 8,
    CSS_FIRST_NOT_INVERTED = 10,
    CSS_ONLY_INVERTED      = 12,
    CSS_FIRST_INVERTED     = 14,
    CSS_ONLY_NOT_FLIPPED   = 64,
    CSS_FIRST_NOT_FLIPPED  = 80,
    CSS_ONLY_FLIPPED       = 96,
    CSS_FIRST_FLIPPED      = 112
};

Values

Name

Description

CSS_DEFAULT

The algorithm searches for codes using the default searching strategy, all other flags are ignored (dependant on code type).

CSS_ONLY_NOT_INVERTED

The algorithm searches for codes only in the non-inverted image.

CSS_FIRST_NOT_INVERTED

The algorithm first searches for codes in the non-inverted and then in the inverted image.

CSS_ONLY_INVERTED

The algorithm searches for codes only in the inverted image.

CSS_FIRST_INVERTED

The algorithm first searches for codes in the inverted and then in the non-inverted image.

CSS_ONLY_NOT_FLIPPED

The algorithm searches for codes only in the non-mirrored image.

CSS_FIRST_NOT_FLIPPED

The algorithm first searches for codes in the non-mirrored and then in the mirrored image.

CSS_ONLY_FLIPPED

The algorithm searches for codes only in the mirrored image.

CSS_FIRST_FLIPPED

The algorithm first searches for codes in the mirrored and then in the non-mirrored image.