Reference for ultralytics/models/yolo/detect/predict.py
Note
This file is available at https://github.com/ultralytics/ultralytics/blob/main/ultralytics/models/yolo/detect/predict.py. If you spot a problem please help fix it by contributing a Pull Request 🛠️. Thank you 🙏!
ultralytics.models.yolo.detect.predict.DetectionPredictor
Bases: BasePredictor
A class extending the BasePredictor class for prediction based on a detection model.
This predictor specializes in object detection tasks, processing model outputs into meaningful detection results with bounding boxes and class predictions.
Attributes:
Name | Type | Description |
---|---|---|
args |
namespace
|
Configuration arguments for the predictor. |
model |
Module
|
The detection model used for inference. |
batch |
list
|
Batch of images and metadata for processing. |
Methods:
Name | Description |
---|---|
postprocess |
Process raw model predictions into detection results. |
construct_results |
Build Results objects from processed predictions. |
construct_result |
Create a single Result object from a prediction. |
Examples:
>>> from ultralytics.utils import ASSETS
>>> from ultralytics.models.yolo.detect import DetectionPredictor
>>> args = dict(model="yolo11n.pt", source=ASSETS)
>>> predictor = DetectionPredictor(overrides=args)
>>> predictor.predict_cli()
Source code in ultralytics/engine/predictor.py
construct_result
Construct a single Results object from one image prediction.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
pred
|
Tensor
|
Predicted boxes and scores with shape (N, 6) where N is the number of detections. |
required |
img
|
Tensor
|
Preprocessed image tensor used for inference. |
required |
orig_img
|
ndarray
|
Original image before preprocessing. |
required |
img_path
|
str
|
Path to the original image file. |
required |
Returns:
Type | Description |
---|---|
Results
|
Results object containing the original image, image path, class names, and scaled bounding boxes. |
Source code in ultralytics/models/yolo/detect/predict.py
construct_results
Construct a list of Results objects from model predictions.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
preds
|
List[Tensor]
|
List of predicted bounding boxes and scores for each image. |
required |
img
|
Tensor
|
Batch of preprocessed images used for inference. |
required |
orig_imgs
|
List[ndarray]
|
List of original images before preprocessing. |
required |
Returns:
Type | Description |
---|---|
List[Results]
|
List of Results objects containing detection information for each image. |
Source code in ultralytics/models/yolo/detect/predict.py
postprocess
Post-processes predictions and returns a list of Results objects.