UNPKG

dynamsoft-capture-vision-cordova

Version:
104 lines (103 loc) 2.87 kB
export interface DBRRuntimeSettings { /** * A combined value of EnumBarcodeFormat members. */ barcodeFormatIds: number; /** * A combined value of EnumBarcodeFormat_2 members. */ barcodeFormatIds_2: number; /** * Defines how many barcodes you want decode from a single image. */ expectedBarcodesCount: number; /** * Defines the maximum time consumption on processing a single image. */ timeout: number; } export declare enum EnumDBRPresetTemplate { /** * The default setting for processing the video streaming. */ DEFAULT = 0, /** * Use this template when processing single barcode under the video streaming. */ VIDEO_SINGLE_BARCODE = 1, /** * Use this template for higher speed when processing the video streaming. */ VIDEO_SPEED_FIRST = 2, /** * Use this template for higher read rate when processing the video streaming. */ VIDEO_READ_RATE_FIRST = 3, /** * Use this template for higher speed when processing a still image. */ IMAGE_SPEED_FIRST = 4, /** * Use this template for higher read rate when processing a still image. */ IMAGE_READ_RATE_FIRST = 5, /** * The default setting for processing a still image. */ IMAGE_DEFAULT = 6 } /** * The first group of barcode formats. */ export declare enum EnumBarcodeFormat { BF_ALL = -29360129, BF_ONED = 3147775, BF_GS1_DATABAR = 260096, BF_CODE_39 = 1, BF_CODE_128 = 2, BF_CODE_93 = 4, BF_CODABAR = 8, BF_CODE_11 = 2097152, BF_ITF = 16, BF_EAN_13 = 32, BF_EAN_8 = 64, BF_UPC_A = 128, BF_UPC_E = 256, BF_INDUSTRIAL_25 = 512, BF_CODE_39_EXTENDED = 1024, BF_GS1_DATABAR_OMNIDIRECTIONAL = 2048, BF_GS1_DATABAR_TRUNCATED = 4096, BF_GS1_DATABAR_STACKED = 8192, BF_GS1_DATABAR_STACKED_OMNIDIRECTIONAL = 16384, BF_GS1_DATABAR_EXPANDED = 32768, BF_GS1_DATABAR_EXPANDED_STACKED = 65536, BF_GS1_DATABAR_LIMITED = 131072, BF_PATCHCODE = 262144, BF_PDF417 = 33554432, BF_QR_CODE = 67108864, BF_DATAMATRIX = 134217728, BF_AZTEC = 268435456, BF_MAXICODE = 536870912, BF_MICRO_QR = 1073741824, BF_MICRO_PDF417 = 524288, BF_GS1_COMPOSITE = -2147483648, BF_MSI_CODE = 1048576, BF_NULL = 0 } /** * The second group of barcode formats. */ export declare enum EnumBarcodeFormat_2 { BF2_AUSTRALIANPOST = 8388608, BF2_DOTCODE = 2, BF2_NONSTANDARD_BARCODE = 1, BF2_NULL = 0, BF2_PHARMACODE = 12, BF2_PHARMACODE_ONE_TRACK = 4, BF2_PHARMACODE_TWO_TRACK = 8, BF2_PLANET = 4194304, BF2_POSTALCODE = 32505856, BF2_POSTNET = 2097152, BF2_RM4SCC = 16777216, BF2_USPSINTELLIGENTMAIL = 1048576 }