Fix missing exports for FilesetResolver and static constants
PiperOrigin-RevId: 565113006
This commit is contained in:
parent
d6ee884200
commit
7b091dbe53
|
@ -122,30 +122,35 @@ export class FaceLandmarker extends VisionTaskRunner {
|
|||
/**
|
||||
* Landmark connections to draw the connection between a face's lips.
|
||||
* @export
|
||||
* @nocollapse
|
||||
*/
|
||||
static FACE_LANDMARKS_LIPS = FACE_LANDMARKS_LIPS;
|
||||
|
||||
/**
|
||||
* Landmark connections to draw the connection between a face's left eye.
|
||||
* @export
|
||||
* @nocollapse
|
||||
*/
|
||||
static FACE_LANDMARKS_LEFT_EYE = FACE_LANDMARKS_LEFT_EYE;
|
||||
|
||||
/**
|
||||
* Landmark connections to draw the connection between a face's left eyebrow.
|
||||
* @export
|
||||
* @nocollapse
|
||||
*/
|
||||
static FACE_LANDMARKS_LEFT_EYEBROW = FACE_LANDMARKS_LEFT_EYEBROW;
|
||||
|
||||
/**
|
||||
* Landmark connections to draw the connection between a face's left iris.
|
||||
* @export
|
||||
* @nocollapse
|
||||
*/
|
||||
static FACE_LANDMARKS_LEFT_IRIS = FACE_LANDMARKS_LEFT_IRIS;
|
||||
|
||||
/**
|
||||
* Landmark connections to draw the connection between a face's right eye.
|
||||
* @export
|
||||
* @nocollapse
|
||||
*/
|
||||
static FACE_LANDMARKS_RIGHT_EYE = FACE_LANDMARKS_RIGHT_EYE;
|
||||
|
||||
|
@ -153,30 +158,35 @@ export class FaceLandmarker extends VisionTaskRunner {
|
|||
* Landmark connections to draw the connection between a face's right
|
||||
* eyebrow.
|
||||
* @export
|
||||
* @nocollapse
|
||||
*/
|
||||
static FACE_LANDMARKS_RIGHT_EYEBROW = FACE_LANDMARKS_RIGHT_EYEBROW;
|
||||
|
||||
/**
|
||||
* Landmark connections to draw the connection between a face's right iris.
|
||||
* @export
|
||||
* @nocollapse
|
||||
*/
|
||||
static FACE_LANDMARKS_RIGHT_IRIS = FACE_LANDMARKS_RIGHT_IRIS;
|
||||
|
||||
/**
|
||||
* Landmark connections to draw the face's oval.
|
||||
* @export
|
||||
* @nocollapse
|
||||
*/
|
||||
static FACE_LANDMARKS_FACE_OVAL = FACE_LANDMARKS_FACE_OVAL;
|
||||
|
||||
/**
|
||||
* Landmark connections to draw the face's contour.
|
||||
* @export
|
||||
* @nocollapse
|
||||
*/
|
||||
static FACE_LANDMARKS_CONTOURS = FACE_LANDMARKS_CONTOURS;
|
||||
|
||||
/**
|
||||
* Landmark connections to draw the face's tesselation.
|
||||
* @export
|
||||
* @nocollapse
|
||||
*/
|
||||
static FACE_LANDMARKS_TESSELATION = FACE_LANDMARKS_TESSELATION;
|
||||
|
||||
|
|
|
@ -77,6 +77,7 @@ export class GestureRecognizer extends VisionTaskRunner {
|
|||
* An array containing the pairs of hand landmark indices to be rendered with
|
||||
* connections.
|
||||
* @export
|
||||
* @nocollapse
|
||||
*/
|
||||
static HAND_CONNECTIONS = HAND_CONNECTIONS;
|
||||
|
||||
|
|
|
@ -69,6 +69,7 @@ export class HandLandmarker extends VisionTaskRunner {
|
|||
* An array containing the pairs of hand landmark indices to be rendered with
|
||||
* connections.
|
||||
* @export
|
||||
* @nocollapse
|
||||
*/
|
||||
static HAND_CONNECTIONS = HAND_CONNECTIONS;
|
||||
|
||||
|
|
|
@ -77,6 +77,7 @@ export class PoseLandmarker extends VisionTaskRunner {
|
|||
* An array containing the pairs of pose landmark indices to be rendered with
|
||||
* connections.
|
||||
* @export
|
||||
* @nocollapse
|
||||
*/
|
||||
static POSE_CONNECTIONS: Connection[] = [
|
||||
{start: 0, end: 1}, {start: 1, end: 2}, {start: 2, end: 3},
|
||||
|
|
Loading…
Reference in New Issue
Block a user