Enumeration SectionType
SectionType categorizes the distinct segments within the image processing algorithm, pinpointing the exact phase responsible for generating a specific IntermediateResult.
- Objective-C
- Swift
typedef NS_ENUM(NSInteger, DSSectionType) { /**No section type is specified.*/ DSSectionTypeNull, /**The result is output by "region prediction" section.*/ DSSectionTypeRegionPredection, /**The result is output by "barcode localization" section.*/ DSSectionTypeBarcodeLocalization, /**The result is output by "barcode decoding" section.*/ DSSectionTypeBarcodeDecoding, /**The result is output by "text line localization" section.*/ DSSectionTypeTextLineLocalization, /**The result is output by "text line recognition" section.*/ DSSectionTypeTextLineRecognition, /**The result is output by "document detection" section.*/ DSSectionTypeDocumentDetection, /** The section type is "document deskewing".*/ DSSectionTypeDocumentDeskewing, /** The section type is "image enhancement".*/ DSSectionTypeImageEnhancement };public enum SectionType : Int { /**No section type is specified.*/ case null /**The result is output by "region prediction" section.*/ case regionPredection /**The result is output by "barcode localization" section.*/ case barcodeLocalization /**The result is output by "barcode decoding" section.*/ case barcodeDecoding /**The result is output by "text line localization" section.*/ case textLineLocalization /**The result is output by "text line recognition" section.*/ case textLineRecognition /**The result is output by "document detection" section.*/ case documentDetection /**The result is output by "document deskewing" section.*/ case documentDeskewing /**The result is output by "document enhancement" section.*/ case documentEnhancement }