From 449aadfe11a1c7dec1301c5081d7d8b7bf1d11ba Mon Sep 17 00:00:00 2001 From: Francesco Gonzales <33703910+fulcus@users.noreply.github.com> Date: Mon, 22 May 2023 00:33:04 +0200 Subject: [PATCH] Update docs in bounding_box.d.ts --- mediapipe/tasks/web/components/containers/bounding_box.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mediapipe/tasks/web/components/containers/bounding_box.d.ts b/mediapipe/tasks/web/components/containers/bounding_box.d.ts index 77f2837d1..002d4986c 100644 --- a/mediapipe/tasks/web/components/containers/bounding_box.d.ts +++ b/mediapipe/tasks/web/components/containers/bounding_box.d.ts @@ -16,9 +16,9 @@ /** An integer bounding box, axis aligned. */ export declare interface BoundingBox { - /** The X coordinate of the top-left corner, in pixels. */ + /** The X coordinate of the bottom-left corner, in pixels. */ originX: number; - /** The Y coordinate of the top-left corner, in pixels. */ + /** The Y coordinate of the bottom-left corner, in pixels. */ originY: number; /** The width of the bounding box, in pixels. */ width: number;