Fix missing exports for FilesetResolver and static constants

PiperOrigin-RevId: 565113006
This commit is contained in:
Sebastian Schmidt 2023-09-13 11:35:34 -07:00 committed by Copybara-Service
parent d6ee884200
commit 7b091dbe53
4 changed files with 13 additions and 0 deletions

View File

@ -122,30 +122,35 @@ export class FaceLandmarker extends VisionTaskRunner {
/** /**
* Landmark connections to draw the connection between a face's lips. * Landmark connections to draw the connection between a face's lips.
* @export * @export
* @nocollapse
*/ */
static FACE_LANDMARKS_LIPS = FACE_LANDMARKS_LIPS; static FACE_LANDMARKS_LIPS = FACE_LANDMARKS_LIPS;
/** /**
* Landmark connections to draw the connection between a face's left eye. * Landmark connections to draw the connection between a face's left eye.
* @export * @export
* @nocollapse
*/ */
static FACE_LANDMARKS_LEFT_EYE = FACE_LANDMARKS_LEFT_EYE; static FACE_LANDMARKS_LEFT_EYE = FACE_LANDMARKS_LEFT_EYE;
/** /**
* Landmark connections to draw the connection between a face's left eyebrow. * Landmark connections to draw the connection between a face's left eyebrow.
* @export * @export
* @nocollapse
*/ */
static FACE_LANDMARKS_LEFT_EYEBROW = FACE_LANDMARKS_LEFT_EYEBROW; static FACE_LANDMARKS_LEFT_EYEBROW = FACE_LANDMARKS_LEFT_EYEBROW;
/** /**
* Landmark connections to draw the connection between a face's left iris. * Landmark connections to draw the connection between a face's left iris.
* @export * @export
* @nocollapse
*/ */
static FACE_LANDMARKS_LEFT_IRIS = FACE_LANDMARKS_LEFT_IRIS; static FACE_LANDMARKS_LEFT_IRIS = FACE_LANDMARKS_LEFT_IRIS;
/** /**
* Landmark connections to draw the connection between a face's right eye. * Landmark connections to draw the connection between a face's right eye.
* @export * @export
* @nocollapse
*/ */
static FACE_LANDMARKS_RIGHT_EYE = FACE_LANDMARKS_RIGHT_EYE; 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 * Landmark connections to draw the connection between a face's right
* eyebrow. * eyebrow.
* @export * @export
* @nocollapse
*/ */
static FACE_LANDMARKS_RIGHT_EYEBROW = FACE_LANDMARKS_RIGHT_EYEBROW; static FACE_LANDMARKS_RIGHT_EYEBROW = FACE_LANDMARKS_RIGHT_EYEBROW;
/** /**
* Landmark connections to draw the connection between a face's right iris. * Landmark connections to draw the connection between a face's right iris.
* @export * @export
* @nocollapse
*/ */
static FACE_LANDMARKS_RIGHT_IRIS = FACE_LANDMARKS_RIGHT_IRIS; static FACE_LANDMARKS_RIGHT_IRIS = FACE_LANDMARKS_RIGHT_IRIS;
/** /**
* Landmark connections to draw the face's oval. * Landmark connections to draw the face's oval.
* @export * @export
* @nocollapse
*/ */
static FACE_LANDMARKS_FACE_OVAL = FACE_LANDMARKS_FACE_OVAL; static FACE_LANDMARKS_FACE_OVAL = FACE_LANDMARKS_FACE_OVAL;
/** /**
* Landmark connections to draw the face's contour. * Landmark connections to draw the face's contour.
* @export * @export
* @nocollapse
*/ */
static FACE_LANDMARKS_CONTOURS = FACE_LANDMARKS_CONTOURS; static FACE_LANDMARKS_CONTOURS = FACE_LANDMARKS_CONTOURS;
/** /**
* Landmark connections to draw the face's tesselation. * Landmark connections to draw the face's tesselation.
* @export * @export
* @nocollapse
*/ */
static FACE_LANDMARKS_TESSELATION = FACE_LANDMARKS_TESSELATION; static FACE_LANDMARKS_TESSELATION = FACE_LANDMARKS_TESSELATION;

View File

@ -77,6 +77,7 @@ export class GestureRecognizer extends VisionTaskRunner {
* An array containing the pairs of hand landmark indices to be rendered with * An array containing the pairs of hand landmark indices to be rendered with
* connections. * connections.
* @export * @export
* @nocollapse
*/ */
static HAND_CONNECTIONS = HAND_CONNECTIONS; static HAND_CONNECTIONS = HAND_CONNECTIONS;

View File

@ -69,6 +69,7 @@ export class HandLandmarker extends VisionTaskRunner {
* An array containing the pairs of hand landmark indices to be rendered with * An array containing the pairs of hand landmark indices to be rendered with
* connections. * connections.
* @export * @export
* @nocollapse
*/ */
static HAND_CONNECTIONS = HAND_CONNECTIONS; static HAND_CONNECTIONS = HAND_CONNECTIONS;

View File

@ -77,6 +77,7 @@ export class PoseLandmarker extends VisionTaskRunner {
* An array containing the pairs of pose landmark indices to be rendered with * An array containing the pairs of pose landmark indices to be rendered with
* connections. * connections.
* @export * @export
* @nocollapse
*/ */
static POSE_CONNECTIONS: Connection[] = [ static POSE_CONNECTIONS: Connection[] = [
{start: 0, end: 1}, {start: 1, end: 2}, {start: 2, end: 3}, {start: 0, end: 1}, {start: 1, end: 2}, {start: 2, end: 3},