Table of contents

Enumeration SectionType

SectionType categorizes the distinct segments within the image processing algorithm, pinpointing the exact phase responsible for generating a specific IntermediateResult.

class EnumSectionType(IntEnum):
   # No section type is specified.
   ST_NULL
   # The result is output by "region prediction" section.
   ST_REGION_PREDETECTION
   # The result is output by "barcode localization" section.
   ST_BARCODE_LOCALIZATION
   # The result is output by "barcode decoding" section.
   ST_BARCODE_DECODING
   # The result is output by "text line localization" section.
   ST_TEXT_LINE_LOCALIZATION
   # The result is output by "text line  recognition" section.
   ST_TEXT_LINE_RECOGNITION
   # The result is output by "document detection" section.
   ST_DOCUMENT_DETECTION
   # The result is output by "document normalization" section.
   ST_DOCUMENT_NORMALIZATION

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article: