Merge remote-tracking branch 'origin/yolov8-obb' into yolov8-obb
# Conflicts: # docs/annotators.md
This commit is contained in:
commit
c7d7e8b71e
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue