From ffe3697874b1c296355c77f9dfb28f0e4f564b0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Kozlovsk=C3=BD?= Date: Thu, 3 Oct 2024 20:58:42 +0200 Subject: [PATCH] Fix BBox Annotation Docstring (#180) --- luxonis_ml/data/datasets/annotation.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/luxonis_ml/data/datasets/annotation.py b/luxonis_ml/data/datasets/annotation.py index b982eb02..5b4186b8 100644 --- a/luxonis_ml/data/datasets/annotation.py +++ b/luxonis_ml/data/datasets/annotation.py @@ -137,11 +137,11 @@ class BBoxAnnotation(Annotation): Values are normalized based on the image size. @type x: float - @ivar x: The center x-coordinate of the bounding box. Normalized to - [0, 1]. + @ivar x: The top-left x coordinate of the bounding box. Normalized + to [0, 1]. @type y: float - @ivar y: The center y-coordinate of the bounding box. Normalized to - [0, 1]. + @ivar y: The top-left y coordinate of the bounding box. Normalized + to [0, 1]. @type w: float @ivar w: The width of the bounding box. Normalized to [0, 1]. @type h: float