From 272c8d4c8addbc26b7db115fcac5346b34152ef6 Mon Sep 17 00:00:00 2001 From: Sebastian Schmidt Date: Fri, 3 May 2024 15:22:58 -0700 Subject: [PATCH] Add Matrix to vision.d.ts PiperOrigin-RevId: 630512342 --- .../web/vision/face_landmarker/face_landmarker_result.d.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/mediapipe/tasks/web/vision/face_landmarker/face_landmarker_result.d.ts b/mediapipe/tasks/web/vision/face_landmarker/face_landmarker_result.d.ts index 4af483ab3c..56001bc077 100644 --- a/mediapipe/tasks/web/vision/face_landmarker/face_landmarker_result.d.ts +++ b/mediapipe/tasks/web/vision/face_landmarker/face_landmarker_result.d.ts @@ -16,10 +16,13 @@ import {Category} from '../../../../tasks/web/components/containers/category'; import {Classifications} from '../../../../tasks/web/components/containers/classification_result'; -import {Landmark, NormalizedLandmark} from '../../../../tasks/web/components/containers/landmark'; +import { + Landmark, + NormalizedLandmark, +} from '../../../../tasks/web/components/containers/landmark'; import {Matrix} from '../../../../tasks/web/components/containers/matrix'; -export {Category, Landmark, NormalizedLandmark}; +export {Category, Landmark, Matrix, NormalizedLandmark}; /** * Represents the face landmarks deection results generated by `FaceLandmarker`.