Class iContour
The iContour is one of the results
type in iIntermediateResult
.
- Objective-C
- Swift
@interface iContour : NSObject
class iContour : NSObject
Attribute | Description |
---|---|
pointsCount |
The total points count of the contour. |
points |
The points array of the points that surround the barcode area.. |
pointsCount
The total points count of the contour.
- Objective-C
- Swift
@property (nonatomic, assign) NSInteger pointsCount
var pointsCount: Int { get set }
points
The points array.
- Objective-C
- Swift
@property (nonatomic, nonnull) NSArray* points
var points: [Any] { get set }