Documentation
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.

  • JavaScript
  • Android
  • Objective-C
  • Swift
  • C++
enum EnumSectionType {
    /** Indicates that no specific section type has been specified. */
    ST_NULL = 0,
    /** Corresponds to results generated in the "region prediction" section. */
    ST_REGION_PREDETECTION = 1,
    /** Corresponds to results generated in the "barcode localization" section. */
    ST_BARCODE_LOCALIZATION = 2,
    /** Corresponds to results generated in the "barcode decoding" section. */
    ST_BARCODE_DECODING = 3,
    /** Corresponds to results generated in the "text line localization" section. */
    ST_TEXT_LINE_LOCALIZATION = 4,
    /** Corresponds to results generated in the "text line recognition" section. */
    ST_TEXT_LINE_RECOGNITION = 5,
    /** Corresponds to results generated in the "document detection" section. */
    ST_DOCUMENT_DETECTION = 6,
    /** Corresponds to results generated in the "document normalization" section. */
    ST_DOCUMENT_NORMALIZATION = 7
}
@Retention(RetentionPolicy.CLASS)
public @interface EnumSectionType
{
   /**No section type is specified.*/
   public static final int ST_NULL = 0;
   /**The result is output by "region prediction" section.*/
   public static final int ST_REGION_PREDETECTION = 1;
   /**The result is output by "barcode localization" section.*/
   public static final int ST_BARCODE_LOCALIZATION = 2;
   /**The result is output by "barcode decoding" section.*/
   public static final int ST_BARCODE_DECODING = 3;
   /**The result is output by "text line localization" section.*/
   public static final int ST_TEXT_LINE_LOCALIZATION = 4;
   /**The result is output by "text line  recognition" section.*/
   public static final int ST_TEXT_LINE_RECOGNITION = 5;
   /**The result is output by "document detection" section.*/
   public static final int ST_DOCUMENT_DETECTION = 6;
   /**The result is output by "document normalization" section.*/
   public static final int ST_DOCUMENT_NORMALIZATION = 7;
}
typedef NS_ENUM(NSInteger, DSSectionType)
{
   /**No section type is specified.*/
   DSSectionTypeNull = 0,
   /**The result is output by "region prediction" section.*/
   DSSectionTypeRegionPredection = 1,
   /**The result is output by "barcode localization" section.*/
   DSSectionTypeBarcodeLocalization = 2,
   /**The result is output by "barcode decoding" section.*/
   DSSectionTypeBarcodeDecoding = 3,
   /**The result is output by "text line localization" section.*/
   DSSectionTypeTextLineLocalization = 4,
   /**The result is output by "text line  recognition" section.*/
   DSSectionTypeTextLineRecognition = 5,
   /**The result is output by "document detection" section.*/
   DSSectionTypeDocumentDetection = 6,
   /**The result is output by "document normalization" section.*/
   DSSectionTypeDocumentNormalization = 7
};
public enum SectionType : Int
{
   /**No section type is specified.*/
   null = 0,
   /**The result is output by "region prediction" section.*/
   regionPredection = 1,
   /**The result is output by "barcode localization" section.*/
   barcodeLocalization = 2,
   /**The result is output by "barcode decoding" section.*/
   barcodeDecoding = 3,
   /**The result is output by "text line localization" section.*/
   textLineLocalization = 4,
   /**The result is output by "text line  recognition" section.*/
   textLineRecognition = 5,
   /**The result is output by "document detection" section.*/
   documentDetection = 6,
   /**The result is output by "document normalization" section.*/
   documentNormalization = 7
}
typedef enum SectionType
{
   /**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,
} SectionType;

This page is compatible for:

Version 1.0

Is this page helpful?

YesYes NoNo

In this article:

latest version

    • Latest version (2.2.20)
    • Version 2.x
      • Version 2.2.10
      • Version 2.2.0
      • Version 2.0.30
      • Version 2.0.20
      • Version 2.0.10
      • Version 2.0.0
    Change +
    © 2003–2024 Dynamsoft. All rights reserved.
    Privacy Statement / Site Map / Home / Purchase / Support