Merge remote-tracking branch 'origin/yolov8-obb' into yolov8-obb

# Conflicts:
#	docs/annotators.md
This commit is contained in:
SkalskiP 2024-01-24 17:47:41 +01:00
commit c7d7e8b71e
1 changed files with 8 additions and 8 deletions

View File

@ -135,16 +135,16 @@ class OrientedBoxAnnotator(BaseAnnotator):
Example:
```python
>>> import supervision as sv
import supervision as sv
>>> image = ...
>>> detections = sv.Detections(...)
image = ...
detections = sv.Detections(...)
>>> oriented_box_annotator = sv.OrientedBoxAnnotator()
>>> annotated_frame = oriented_box_annotator.annotate(
... scene=image.copy(),
... detections=detections
... )
oriented_box_annotator = sv.OrientedBoxAnnotator()
annotated_frame = oriented_box_annotator.annotate(
scene=image.copy(),
detections=detections
)
```
""" # noqa E501 // docs