DSComplementedBarcodeImageUnit Class
The DSComplementedBarcodeImageUnit
class represents a unit that contains complemented barcode image data. It inherits from the DSIntermediateResultUnit
class.
Definition
Assembly: DynamsoftBarcodeReader.xcframework
- Objective-C
- Swift
@interface DSComplementedBarcodeImageUnit : DSIntermediateResultUnit
class ComplementedBarcodeImageUnit : IntermediateResultUnit
Methods & Attributes
Attributes | Type | Description |
---|---|---|
imageData |
DSImageData * | The image data of the complemented barcode. |
location |
DSQuadrilateral * | The location of the result as a DSQuadrilateral object. |
The following attributes are inherited from the class DSIntermediateResultUnit
.
Attributes | Type | Description |
---|---|---|
hashId |
NSString * | The hash ID of the unit. |
originalImageHashId |
NSString * | The hash ID of the original image. You can use this ID to get the original image via DSIntermediateResultManager class. |
originalImageTag |
DSImageTag * | The image tag of the original image. |
type |
DSIntermediateResultUnitType | The type of the intermediate result unit. |
The following methods are inherited from the class DSIntermediateResultUnit
.
Method | Description |
---|---|
getTransformMatrix |
Gets the transformation matrix via DSTransformMatrixType . |
clone |
Creates a copy of the intermediate result unit. |
imageData
The image data of the complemented barcode.
- Objective-C
- Swift
@property(nonatomic, nullable) DSImageData *imageData;
var imageData: ImageData? { get set }
location
The location of the result as a DSQuadrilateral object.
- Objective-C
- Swift
@property(nonatomic, nullable) DSQuadrilateral *location;
var location: Quadrilateral? { get set }