Class iRegionOfInterest
Stores the region of interest.
- Objective-C
- Swift
@interface iRegionOfInterest : NSObjectclass iRegionOfInterest : NSObject
| Attribute | Descriptions |
|---|---|
roiId |
The ID generated by the SDK. |
point |
The left top point of the region. |
width |
The width of the region. |
height |
The height of the region. |
roiId
The ID generated by the SDK.
- Objective-C
- Swift
@property (nonatomic, assign) NSInteger roiId;var roiId: Int { get set }
point
The left top point of the region.
- Objective-C
- Swift
@property (nonatomic, assign) CGPoint point;var point: CGPoint { get set }
width
The width of the region.
- Objective-C
- Swift
@property (nonatomic, assign) NSInteger width;var width: Int { get set }
height
The height of the region.
- Objective-C
- Swift
@property (nonatomic, assign) NSInteger height;var height: Int { get set }