Enumeration CapturedResultItemType
CapturedResultItemType defines the various categories of items that can be recognized and captured.
class EnumCapturedResultItemType(IntEnum):
# The type of the CapturedResultItem is "original image".
CRIT_ORIGINAL_IMAGE = 1
# The type of the CapturedResultItem is "barcode".
CRIT_BARCODE = 2
# The type of the CapturedResultItem is "text line".
CRIT_TEXT_LINE = 4
# The type of the CapturedResultItem is "detected quad".
CRIT_DETECTED_QUAD = 8
# The type of the CapturedResultItem is "normalized image".
CRIT_NORMALIZED_IMAGE = 16
# The type of the CapturedResultItem is "parsed result".
CRIT_PARSED_RESULT = 32