A Region-Of-Interest (ROI) to represent a region within an image.
Signature:
export declare interface RegionOfInterest
Properties
Property | Type | Description |
---|---|---|
keypoint | NormalizedKeypoint | The ROI in keypoint format. |
scribble | NormalizedKeypoint[] | The ROI as scribbles over the object that the user wants to segment. |
RegionOfInterest.keypoint
The ROI in keypoint format.
Signature:
keypoint?: NormalizedKeypoint;
RegionOfInterest.scribble
The ROI as scribbles over the object that the user wants to segment.
Signature:
scribble?: NormalizedKeypoint[];