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;