Skip to content

Commit

Permalink
Fix BBox Annotation Docstring (#180)
Browse files Browse the repository at this point in the history
  • Loading branch information
kozlov721 authored Oct 3, 2024
1 parent 2edab2f commit ffe3697
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions luxonis_ml/data/datasets/annotation.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ffe3697

Please sign in to comment.