Dev Center
Swift
Objective-C
Table of contents

Class iIntermediateResult

Stores the intermediate result.

  • Objective-C
  • Swift
  1. @interface iIntermediateResult : NSObject
    
  2. class iIntermediateResult : NSObject
    
Attribute Descriptions
resultsCount The total result count.
results One of the following types: Array of iContour, Array of iImageData, Array of iLineSegment, Array of iLocalizationResult, Array of iRegionOfInterest.
dataType The data type of the intermediate result.
resultType Intermediate result type.
barcodeComplementMode The EnumBarcodeComplementMode used when generating the current intermediate result.
bcmIndex The array index of current used EnumBarcodeComplementMode in the barcodeComplementModes setting.
deformationResistingMode The EnumDeformationResistingMode used when generating the current intermediate result.
drmIndex The array index of current used EnumDeformationResistingMode in the deformationResistingModes setting.
dpmCodeReadingMode The EnumDPMCodeReadingMode used when generating the current intermediate result.
dpmcrmIndex The array index of current used EnumDPMCodeReadingMode in the dpmCodeReadingModes setting.
transformationMatrix The rotation matrix.
textFilterMode The EnumTextFilterMode used when generating the current intermediate result.
tfmIndex The array index of current used EnumTextFilterMode in the textFilterModes setting.
localizationMode The EnumLocalizationMode used when generating the current intermediate result.
lmIndex The array index of current used EnumLocalizationMode in the localizationModes setting.
binarizationMode The EnumBinarizationMode used when generating the current intermediate result.
bmIndex The array index of current used EnumBinarizationMode in the binarizationModes setting.
imagePreprocessingMode The EnumImagePreprocessingMode used when generating the current intermediate result.
ipmIndex The array index of current used EnumImagePreprocessingMode in imagePreprocessingModes setting.
roiId The ID of the ROI (Region Of Interest) generated by the SDK. -1 means the original image.
regionPredetectionMode The EnumRegionPredetectionMode used when generating the current intermediate result.
rpmIndex The array index of current used EnumRegionPredetectionMode in the regionPredetectionModes setting.
grayscaleTransformationMode The EnumGrayscaleTransformationMode used when generating the current intermediate result.
gtmIndex The array index of current used EnumGrayscaleTransformationMode in the grayscaleTransformationModes setting.
colourConversionMode The EnumColourConversionMode used when generating the current intermediate result.
cicmIndex The array index of current used EnumColourConversionMode in the colourConversionModes setting.
colourClusteringMode The EnumColourClusteringMode used when generating the current intermediate result.
ccmIndex The array index of current used EnumColourClusteringMode in the colourClusteringModes setting.
scaleDownRatio The scale down ratio.
frameId The ID of the operated frame.
rpmColourArgumentIndex The index of the rpm colour argument.

resultsCount

The total result count.

  • Objective-C
  • Swift
  1. @property (nonatomic, assign) NSInteger resultsCount
    
  2. var resultsCount: Int { get set }
    

results

One of the following types: Array of iContour, Array of iImageData, Array of iLineSegment, Array of iLocalizationResult, Array of iRegionOfInterest.

  • Objective-C
  • Swift
  1. @property (nonatomic, nullable) NSObject* results
    
  2. var results: NSObject? { get set }
    

dataType

The data type of the intermediate result

  • Objective-C
  • Swift
  1. @property (nonatomic, assign) EnumIMResultDataType dataType
    
  2. var dataType: EnumIMResultDataType { get set }
    

resultType

Intermediate result type.

  • Objective-C
  • Swift
  1. @property (nonatomic, assign) EnumIntermediateResultType resultType
    
  2. var resultType: EnumIntermediateResultType { get set }
    

barcodeComplementMode

The EnumBarcodeComplementMode used when generating the current intermediate result.

  • Objective-C
  • Swift
  1. @property (nonatomic, assign) EnumBarcodeComplementMode barcodeComplementMode
    
  2. var barcodeComplementMode: EnumBarcodeComplementMode { get set }
    

bcmIndex

The array index of current used EnumBarcodeComplementMode in the barcodeComplementModes setting.

  • Objective-C
  • Swift
  1. @property (nonatomic, assign) NSInteger bcmIndex
    
  2. var bcmIndex: Int { get set }
    

deformationResistingMode

The EnumDeformationResistingMode used when generating the current intermediate result.

  • Objective-C
  • Swift
  1. @property (nonatomic, assign) EnumDeformationResistingMode deformationResistingMode
    
  2. var deformationResistingMode: EnumDeformationResistingMode { get set }
    

drmIndex

The array index of current used EnumDeformationResistingMode in the deformationResistingModes setting.

  • Objective-C
  • Swift
  1. @property (nonatomic, assign) NSInteger drmIndex
    
  2. var endPoint: Int { get set }
    

dpmCodeReadingMode

The EnumDPMCodeReadingMode used when generating the current intermediate result.

  • Objective-C
  • Swift
  1. @property (nonatomic, assign) EnumDPMCodeReadingMode dpmCodeReadingMode
    
  2. var dpmCodeReadingMode: EnumDPMCodeReadingMode { get set }
    

dpmcrmIndex

The array index of current used EnumDPMCodeReadingMode in the dpmCodeReadingModes setting.

  • Objective-C
  • Swift
  1. @property (nonatomic, assign) NSInteger dpmcrmIndex
    
  2. var dpmcrmIndex: Int { get set }
    

transformationMatrix

The rotation matrix.

  • Objective-C
  • Swift
  1. @property (nonatomic, nonnull) NSArray* transformationMatrix
    
  2. var transformationMatrix: [Any] { get set }
    

textFilterMode

The EnumTextFilterMode used when generating the current intermediate result.

  • Objective-C
  • Swift
  1. @property (nonatomic, assign) EnumTextFilterMode textFilterMode
    
  2. var textFilterMode: EnumTextFilterMode { get set }
    

tfmIndex

The array index of current used EnumTextFilterMode in the textFilterModes setting.

  • Objective-C
  • Swift
  1. @property (nonatomic, assign) NSInteger tfmIndex
    
  2. var tfmIndex: Int { get set }
    

localizationMode

The EnumLocalizationMode used when generating the current intermediate result.

  • Objective-C
  • Swift
  1. @property (nonatomic, assign) EnumLocalizationMode localizationMode
    
  2. var localizationMode: EnumLocalizationMode { get set }
    

lmIndex

The array index of current used EnumLocalizationMode in the localizationModes setting.

  • Objective-C
  • Swift
  1. @property (nonatomic, assign) NSInteger lmIndex
    
  2. var lmIndex: Int { get set }
    

binarizationMode

The EnumBinarizationMode used when generating the current intermediate result.

  • Objective-C
  • Swift
  1. @property (nonatomic, assign) EnumBinarizationMode binarizationMode
    
  2. var binarizationMode: EnumBinarizationMode { get set }
    

bmIndex

The array index of current used EnumBinarizationMode in the binarizationModes setting.

  • Objective-C
  • Swift
  1. @property (nonatomic, assign) NSInteger bmIndex
    
  2. var bmIndex: Int { get set }
    

imagePreprocessingMode

The EnumImagePreprocessingMode used when generating the current intermediate result.

  • Objective-C
  • Swift
  1. @property (nonatomic, assign) EnumImagePreprocessingMode imagePreprocessingMode
    
  2. var imagePreprocessingMode: EnumImagePreprocessingMode { get set }
    

ipmIndex

The array index of current used EnumImagePreprocessingMode in imagePreprocessingModes setting.

  • Objective-C
  • Swift
  1. @property (nonatomic, assign) NSInteger ipmIndex
    
  2. var ipmIndex: Int { get set }
    

roiId

The ID of the ROI (Region Of Interest) generated by the SDK. -1 means the original image.

  • Objective-C
  • Swift
  1. @property (nonatomic, assign) NSInteger roiId
    
  2. var roiId: Int { get set }
    

regionPredetectionMode

The EnumRegionPredetectionMode used when generating the current intermediate result.

  • Objective-C
  • Swift
  1. @property (nonatomic, assign) EnumRegionPredetectionMode regionPredetectionMode
    
  2. var regionPredetectionMode: EnumRegionPredetectionMode { get set }
    

rpmIndex

The array index of current used EnumRegionPredetectionMode in the regionPredetectionModes setting.

  • Objective-C
  • Swift
  1. @property (nonatomic, assign) NSInteger rpmIndex
    
  2. var rpmIndex: Int { get set }
    

grayscaleTransformationMode

The EnumGrayscaleTransformationMode used when generating the current intermediate result.

  • Objective-C
  • Swift
  1. @property (nonatomic, assign) EnumGrayscaleTransformationMode grayscaleTransformationMode
    
  2. var grayscaleTransformationMode: EnumGrayscaleTransformationMode { get set }
    

gtmIndex

The array index of current used EnumGrayscaleTransformationMode in the grayscaleTransformationModes setting.

  • Objective-C
  • Swift
  1. @property (nonatomic, assign) NSInteger gtmIndex
    
  2. var gtmIndex: Int { get set }
    

colourConversionMode

The EnumColourConversionMode used when generating the current intermediate result.

  • Objective-C
  • Swift
  1. @property (nonatomic, assign) EnumColourConversionMode colourConversionMode
    
  2. var colourConversionMode: EnumColourConversionMode { get set }
    

cicmIndex

The array index of current used EnumColourConversionMode in the colourConversionModes setting.

  • Objective-C
  • Swift
  1. @property (nonatomic, assign) NSInteger cicmIndex
    
  2. var cicmIndex: Int { get set }
    

colourClusteringMode

The EnumColourClusteringMode used when generating the current intermediate result.

  • Objective-C
  • Swift
  1. @property (nonatomic, assign) EnumColourClusteringMode colourClusteringMode
    
  2. var colourClusteringMode: EnumColourClusteringMode { get set }
    

ccmIndex

The array index of current used EnumColourClusteringMode in the colourClusteringModes setting.

  • Objective-C
  • Swift
  1. @property (nonatomic, assign) NSInteger ccmIndex
    
  2. var ccmIndex: Int { get set }
    

scaleDownRatio

The scale down ratio.

  • Objective-C
  • Swift
  1. @property (nonatomic, assign) NSInteger scaleDownRatio
    
  2. var scaleDownRatio: Int { get set }
    

frameId

The ID of the operated frame.

  • Objective-C
  • Swift
  1. @property (nonatomic, assign) NSInteger frameId
    
  2. var frameId: Int { get set }
    

rpmColourArgumentIndex

The index of the rpm colour argument.

  • Objective-C
  • Swift
  1. @property (nonatomic, assign) NSInteger rpmColourArgumentIndex
    
  2. var rpmColourArgumentIndex: Int { get set }
    

This page is compatible for:

Version 7.5.0

Is this page helpful?

YesYes NoNo

In this article:

latest version

  • Latest version (10.2.10)
  • Version 10.x
    • Version 10.0.21
    • Version 10.0.20
  • Version 9.x
    • Version 9.6.20
    • Version 9.6.11
    • Version 9.6.10
    • Version 9.6.0
    • Version 9.4.0
    • Version 9.2.13
    • Version 9.2.11
    • Version 9.2.10
    • Version 9.0.2
    • Version 9.0.1
    • Version 9.0.0
  • Version 8.x
    • Version 8.9.3
    • Version 8.9.1
    • Version 8.9.0
    • Version 8.8.0
    • Version 8.6.0
    • Version 8.4.0
    • Version 8.2.1
    • 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 +