Dev Center
Table of contents

Thanks for downloading Dynamsoft Barcode Reader Package!

Your download will start shortly. If your download does not begin, click here to retry.

Result Enumeration

Enumeration Description
IMResultDataType Describes the intermediate result data type.
IntermediateResultSavingMode Describes the intermediate result saving mode.
IntermediateResultType Describes the intermediate result type.
ResultCoordinateType Describes the result coordinate type.
ResultType Describes the extended result type.
TextResultOrderMode Describes the text result order mode.

IMResultDataType

Describes the intermediate result data type.

Declarations

Language Declaration
C / C++ enum IMResultDataType
.Net enum Dynamsoft.DBR.EnumIMResultDataType
JavaScript Dynamsoft.EnumIMResultDataType
Python class EnumIMResultDataType(IntEnum)
Java / Android class EnumIMResultDataType
ObjC / Swift enum EnumIMResultDataType

Members

Member (except ObjC/Swift) Member (ObjC) Member (Swift) Value Description
IMRDT_IMAGE EnumIMResultDataTypeImage image 0x01 Specifies the ImageData.
IMRDT_CONTOUR EnumIMResultDataTypeContour contour 0x02 Specifies the Contour.
IMRDT_LINESEGMENT EnumIMResultDataTypeLineSegment lineSegment 0x04 Specifies the LineSegment.
IMRDT_LOCALIZATIONRESULT EnumIMResultDataTypeLocalizationResult localizationResult 0x08 Specifies the LocalizationResult.
IMRDT_REGIONOFINTEREST EnumIMResultDataTypeRegionOfInterest regionOfInterest 0x10 Specifies the RegionOfInterest.
IMRDT_QUADRILATERAL EnumIMResultDataTypeQuadrilateral quadrilateral 0x20 Specifies the Quadrilateral.
IMRDT_REFERENCE EnumIMResultDataTypeReference reference 0x40 Specifies the internal data format for using other Dynamsoft products, such as Dynamic Web TWAIN.

IntermediateResultSavingMode

Describes the intermediate result saving mode.

Declarations

Language Declaration
C / C++ enum IntermediateResultSavingMode
.Net enum Dynamsoft.DBR.EnumIntermediateResultSavingMode
JavaScript Dynamsoft.EnumIntermediateResultSavingMode
Python class EnumIntermediateResultSavingMode(IntEnum)
Java / Android class EnumIntermediateResultSavingMode
ObjC / Swift enum EnumIntermediateResultSavingMode

Members

Member (except ObjC/Swift) Member (ObjC) Member (Swift) Value Description Valid Argument(s)
IRSM_MEMORY EnumIntermediateResultSavingModeMemory memory 0x01 Saves intermediate results in memory with public data format. N/A
IRSM_FILESYSTEM EnumIntermediateResultSavingModeFileSystem fileSystem 0x02 Saves intermediate results in file system. FolderPath
RecordsetSizeOfLatestImages
IRSM_BOTH EnumIntermediateResultSavingModeBoth both 0x04 Saves intermediate results using IRSM_MEMORY and IRSM_FILESYSTEM. FolderPath
IRSM_REFERENCE_MEMORY EnumIntermediateResultSavingModeReferenceMemory referenceMemory 0x08 Saves intermediate results in memory with internal data format. FolderPath
RecordsetSizeOfLatestImages

IntermediateResultType

Describes the intermediate result type.

Declarations

Language Declaration
C / C++ enum IntermediateResultType
.Net enum Dynamsoft.DBR.EnumIntermediateResultType
JavaScript Dynamsoft.EnumIntermediateResultType
Python class EnumIntermediateResultType(IntEnum)
Java / Android class EnumIntermediateResultType
ObjC / Swift enum EnumIntermediateResultType

Members

Member (except ObjC/Swift) Member (ObjC) Member (Swift) Value Description
IRT_NO_RESULT EnumIntermediateResultTypeNoResult noResult 0x00 No intermediate result
IRT_ORIGINAL_IMAGE EnumIntermediateResultTypeOriginalImage originalImage 0x01 Original image
IRT_COLOUR_CLUSTERED_IMAGE EnumIntermediateResultTypeColourClusteredImage colourClusteredImage 0x02 Colour clustered image (not supported yet)
IRT_COLOUR_CONVERTED_GRAYSCALE_IMAGE EnumIntermediateResultTypeColourConvertedGrayScaleImage colourConvertedGrayScaleImage 0x04 Colour image converted to grayscale
IRT_TRANSFORMED_GRAYSCALE_IMAGE EnumIntermediateResultTypeTransformedGrayScaleImage transformedGrayScaleImage 0x08 Transformed grayscale image
IRT_PREDETECTED_REGION EnumIntermediateResultTypePredetectedRegion predetectedRegion 0x10 Predetected region
IRT_PREPROCESSED_IMAGE EnumIntermediateResultTypePreprocessedImage preprocessedImage 0x20 Preprocessed image
IRT_BINARIZED_IMAGE EnumIntermediateResultTypeBinarizedImage binarizedImage 0x40 Binarized image
IRT_TEXT_ZONE EnumIntermediateResultTypeTextZone textZone 0x80 Text zone
IRT_CONTOUR EnumIntermediateResultTypeContour contour 0x100 Contour
IRT_LINE_SEGMENT EnumIntermediateResultTypeLineSegment lineSegment 0x200 Line segment
IRT_FORM EnumIntermediateResultTypeForm form 0x400 Form (not supported yet)
IRT_SEGMENTATION_BLOCK EnumIntermediateResultTypeSegmentationBlock segmentationBlock 0x800 Segmentation block (not supported yet)
IRT_TYPED_BARCODE_ZONE EnumIntermediateResultTypeTypedBarcodeZone barcodeZone 0x1000 Typed barcode zone
IRT_PREDETECTED_QUADRILATERAL EnumIntermediateResultTypePredetectedQuadrilateral predetectedQuadrilateral 0x2000 Predetected quadrilateral

ResultCoordinateType

Describes the result coordinate type.

Declarations

Language Declaration
C / C++ enum ResultCoordinateType
.Net enum Dynamsoft.EnumResultCoordinateType
JavaScript Dynamsoft.EnumResultCoordinateType
Python class EnumResultCoordinateType(IntEnum)
Java / Android class EnumResultCoordinateType
ObjC / Swift enum EnumResultCoordinateType

Members

Member (except ObjC/Swift) Member (ObjC) Member (Swift) Value Description
RCT_PIXEL EnumResultCoordinateTypePixel pixel 0x01 Returns the coordinate in pixel value.
RCT_PERCENTAGE EnumResultCoordinateTypePercentage percentage 0x02 Returns the coordinate as a percentage.

ResultType

Describes the extended result type.

Declarations

Language Declaration
C / C++ enum ResultType
.Net enum Dynamsoft.EnumResultType
JavaScript Dynamsoft.EnumResultType
Python class EnumResultType(IntEnum)
Java / Android class EnumResultType
ObjC / Swift enum EnumResultType

Members

Member (except ObjC/Swift) Member (ObjC) Member (Swift) Value Description
RT_STANDARD_TEXT EnumResultTypeStandardText standardText 0 Specifies the standard text. This means the barcode value.
RT_RAW_TEXT EnumResultTypeRawText rawText 1 Specifies the raw text. This means the text that includes start/stop characters, check digits, etc.
RT_CANDIDATE_TEXT EnumResultTypeCandidateText candidateText 2 Specifies all the candidate text. This means all the standard text results decoded from the barcode.
RT_PARTIAL_TEXT EnumResultTypePartialText partialText 3 Specifies the partial text. This means part of the text result decoded from the barcode.

TextResultOrderMode

Describes the text result order mode.

Declarations

Language Declaration
C / C++ enum TextResultOrderMode
.Net enum Dynamsoft.DBR.EnumTextResultOrderMode
JavaScript Dynamsoft.EnumTextResultOrderMode
Python class EnumTextResultOrderMode(IntEnum)
Java / Android class EnumTextResultOrderMode
ObjC / Swift enum EnumTextResultOrderMode

Members

Member (except ObjC/Swift) Member (ObjC) Member (Swift) Value Description
TROM_SKIP EnumTextResultOrderModeSkip skip 0x00 Skips the result ordering operation.
TROM_CONFIDENCE EnumTextResultOrderModeConfidence confidence 0x01 Returns the text results in descending order by confidence.
TROM_POSITION EnumTextResultOrderModePosition position 0x02 Returns the text results in position order, from top to bottom, then left to right.
TROM_FORMAT EnumTextResultOrderModeFormat format 0x04 Returns the text results in alphabetical and numerical order by barcode format string.

This page is compatible for:

Version 7.5.0

Is this page helpful?

YesYes NoNo

In this article:

latest version

  • Latest version
  • Version 10.x
    • Version 10.2.0
    • Version 10.0.21
    • Version 10.0.20
    • Version 10.0.10
    • Version 10.0.0
  • Version 9.x
    • Version 9.6.40
    • Version 9.6.33
    • Version 9.6.32
    • Version 9.6.31
    • Version 9.6.30
    • Version 9.6.20
    • Version 9.6.10
    • Version 9.6.0
    • Version 9.4.0
    • Version 9.2.0
    • Version 9.0.0
  • Version 8.x
    • Version 8.8.0
    • Version 8.6.0
    • Version 8.4.0
    • Version 8.2.0
    • Version 8.1.2
    • Version 8.1.0
    • Version 8.0.0
  • Version 7.x
    • Version 7.6.0
    • Version 7.5.0
Change +