Point2f
2D point with floating-point coordinates. Used for precise positioning of facial features.
type Point2f = {
x: number;
y: number;
};
Properties
Property | Type | Description |
---|---|---|
x | number | X-coordinate as a floating-point number |
y | number | Y-coordinate as a floating-point number |