module documentation
Utilities for working with Ultralytics.
Class |
|
FiftyOne wrapper around an ultralytics.RTDETR model. |
Class |
|
Configuration for a FiftyOneRTDETRModel . |
Class |
|
FiftyOne wrapper around an Ultralytics YOLO classification model. |
Class |
|
Undocumented |
Class |
|
FiftyOne wrapper around an Ultralytics YOLO detection model. |
Class |
|
Undocumented |
Class |
|
FiftyOne wrapper around an ultralytics.YOLO model. |
Class |
|
Configuration for a FiftyOneYOLOModel . |
Class |
|
FiftyOne wrapper around an Ultralytics YOLO OBB detection model. |
Class |
|
Undocumented |
Class |
|
FiftyOne wrapper around an Ultralytics YOLO pose model. |
Class |
|
Undocumented |
Class |
|
FiftyOne wrapper around an Ultralytics YOLO segmentation model. |
Class |
|
Undocumented |
Class |
|
Converts Ultralytics PyTorch Hub model outputs to FiftyOne format. |
Function | convert |
Converts the given Ultralytics model into a FiftyOne model. |
Function | obb |
Converts ultralytics.YOLO instance segmentations to FiftyOne format. |
Function | to |
Converts ultralytics.YOLO boxes to FiftyOne format. |
Function | to |
Converts ultralytics.YOLO instance segmentations to FiftyOne format. |
Function | to |
Converts ultralytics.YOLO keypoints to FiftyOne format. |
Function | to |
Converts ultralytics.YOLO instance segmentations to FiftyOne format. |
Variable | torch |
Undocumented |
Variable | ultralytics |
Undocumented |
Function | _convert |
Undocumented |
Function | _convert |
Undocumented |
Function | _convert |
Undocumented |
Function | _convert |
Undocumented |
Function | _convert |
Undocumented |
Function | _extract |
Get ultralytics track ids if present, else use Nones |
Function | _obb |
Undocumented |
Function | _to |
Undocumented |
Function | _to |
Undocumented |
Function | _to |
Undocumented |
Function | _to |
Undocumented |
Converts the given Ultralytics model into a FiftyOne model.
Parameters | |
model | an ultralytics.YOLO model |
Returns | |
a fiftyone.core.models.Model | |
Raises | |
ValueError | if the model could not be converted |
Converts ultralytics.YOLO instance segmentations to FiftyOne format.
Parameters | |
results | a single or list of ultralytics.engine.results.Results |
confidenceNone | a confidence threshold to filter boxes |
filled:False | whether the polyline should be filled |
Returns | |
a single or list of fiftyone.core.labels.PolyLines |
Converts ultralytics.YOLO boxes to FiftyOne format.
Parameters | |
results | a single or list of ultralytics.engine.results.Results |
confidenceNone | a confidence threshold to filter boxes |
Returns | |
a single or list of fiftyone.core.labels.Detections |
Converts ultralytics.YOLO instance segmentations to FiftyOne format.
Parameters | |
results | a single or list of ultralytics.engine.results.Results |
confidenceNone | a confidence threshold to filter boxes |
Returns | |
a single or list of fiftyone.core.labels.Detections |
Converts ultralytics.YOLO keypoints to FiftyOne format.
Parameters | |
results | a single or list of ultralytics.engine.results.Results |
confidenceNone | a confidence threshold to filter keypoints |
Returns | |
a single or list of fiftyone.core.labels.Keypoints |
Converts ultralytics.YOLO instance segmentations to FiftyOne format.
Parameters | |
results | a single or list of ultralytics.engine.results.Results |
confidenceNone | a confidence threshold to filter boxes |
tolerance:2 | a tolerance, in pixels, when generating approximate polylines for instance masks. Typical values are 1-3 pixels |
filled:True | whether the polyline should be filled |
Returns | |
a single or list of fiftyone.core.labels.Polylines |