Docs Colab, OBB and typos fixes (#10366)
Co-authored-by: Olivier Louvignes <olivier@mg-crea.com> Co-authored-by: RainRat <rainrat78@yahoo.ca>
This commit is contained in:
parent
f646972b95
commit
d6bb3046a8
13 changed files with 18 additions and 16 deletions
|
|
@ -69,6 +69,7 @@ Ultralytics YOLO models return either a Python list of `Results` objects, or a m
|
|||
masks = result.masks # Masks object for segmentation masks outputs
|
||||
keypoints = result.keypoints # Keypoints object for pose outputs
|
||||
probs = result.probs # Probs object for classification outputs
|
||||
obb = result.obb # Oriented boxes object for OBB outputs
|
||||
result.show() # display to screen
|
||||
result.save(filename='result.jpg') # save to disk
|
||||
```
|
||||
|
|
@ -90,6 +91,7 @@ Ultralytics YOLO models return either a Python list of `Results` objects, or a m
|
|||
masks = result.masks # Masks object for segmentation masks outputs
|
||||
keypoints = result.keypoints # Keypoints object for pose outputs
|
||||
probs = result.probs # Probs object for classification outputs
|
||||
obb = result.obb # Oriented boxes object for OBB outputs
|
||||
result.show() # display to screen
|
||||
result.save(filename='result.jpg') # save to disk
|
||||
```
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue