Skip to content

How can i get all XYHW-confidence for detected objects in image? #5056

Answered by glenn-jocher
lirilkumar asked this question in Q&A
Discussion options

You must be logged in to vote

@lirilkumar see PyTorch Hub tutorial for returning inference results and producing detection crops automatically:

import torch

# Model
model = torch.hub.load('ultralytics/yolov5', 'yolov5s')

# Image
img = 'https://ultralytics.com/images/zidane.jpg'

# Inference
results = model(img)

results.pandas().xyxy[0]
#      xmin    ymin    xmax   ymax  confidence  class    name
# 0  749.50   43.50  1148.0  704.5    0.874023      0  person
# 1  433.50  433.50   517.5  714.5    0.687988     27     tie
# 2  114.75  195.75  1095.0  708.0    0.624512      0  person
# 3  986.00  304.00  1028.0  420.0    0.286865     27     tie

YOLOv5 Tutorials

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by lirilkumar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants