Class iContour
The iContour is one of the results type in iIntermediateResult.
- Objective-C
- Swift
@interface iContour : NSObjectclass 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 pointsCountvar pointsCount: Int { get set }
points
The points array.
- Objective-C
- Swift
@property (nonatomic, nonnull) NSArray* pointsvar points: [Any] { get set }