Skip to content

Commit ffe3697

Browse files
authored
Fix BBox Annotation Docstring (#180)
1 parent 2edab2f commit ffe3697

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

luxonis_ml/data/datasets/annotation.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -137,11 +137,11 @@ class BBoxAnnotation(Annotation):
137137
Values are normalized based on the image size.
138138
139139
@type x: float
140-
@ivar x: The center x-coordinate of the bounding box. Normalized to
141-
[0, 1].
140+
@ivar x: The top-left x coordinate of the bounding box. Normalized
141+
to [0, 1].
142142
@type y: float
143-
@ivar y: The center y-coordinate of the bounding box. Normalized to
144-
[0, 1].
143+
@ivar y: The top-left y coordinate of the bounding box. Normalized
144+
to [0, 1].
145145
@type w: float
146146
@ivar w: The width of the bounding box. Normalized to [0, 1].
147147
@type h: float

0 commit comments

Comments
 (0)