python使用yolo
时间: 2024-03-15 08:35:31 浏览: 84
YOLO目标检测+行人数据集已标注可以直接使用(2125张图像+对应已标注yolo、VOC格式标注文件).zip
5星 · 资源好评率100%
使用Python使用YOLO需要进行以下几个步骤:
1. 安装Python环境:首先需要安装Python环境,建议安装Python3.x版本。
2. 安装OpenCV:YOLO需要使用OpenCV实现图像处理和显示,因此需要安装OpenCV库。可以使用pip安装,命令如下:
```
pip install opencv-python
```
3. 下载YOLO模型文件:需要下载YOLO的模型文件,可以从YOLO官网上下载。例如,可以从以下链接下载YOLOv3模型权重文件:
```
https://pjreddie.com/media/files/yolov3.weights
```
4. 编写Python代码:使用Python代码加载模型文件,设置参数,读取图像,进行检测,并将结果显示出来。以下是一个简单的例子:
```python
import cv2
# Load Yolo
net = cv2.dnn.readNet("yolov3.weights", "yolov3.cfg")
classes = []
with open("coco.names", "r") as f:
classes = [line.strip() for line in f.readlines()]
layer_names = net.getLayerNames()
output_layers = [layer_names[i[0] - 1] for i in net.getUnconnectedOutLayers()]
# Load image
img = cv2.imread("image.jpg")
img = cv2.resize(img, None, fx=0.4, fy=0.4)
height, width, channels = img.shape
# Detect objects
blob = cv2.dnn.blobFromImage(img, 0.00392, (416, 416), (0, 0, 0), True, crop=False)
net.setInput(blob)
outs = net.forward(output_layers)
# Show information on the screen
class_ids = []
confidences = []
boxes = []
for out in outs:
for detection in out:
scores = detection[5:]
class_id = np.argmax(scores)
confidence = scores[class_id]
if confidence > 0.5:
# Object detected
center_x = int(detection[0] * width)
center_y = int(detection[1] * height)
w = int(detection[2] * width)
h = int(detection[3] * height)
# Rectangle coordinates
x = int(center_x - w / 2)
y = int(center_y - h / 2)
boxes.append([x, y, w, h])
confidences.append(float(confidence))
class_ids.append(class_id)
indexes = cv2.dnn.NMSBoxes(boxes, confidences, 0.5, 0.4)
font = cv2.FONT_HERSHEY_PLAIN
colors = np.random.uniform(0, 255, size=(len(classes), 3))
for i in range(len(boxes)):
if i in indexes:
x, y, w, h = boxes[i]
label = str(classes[class_ids[i]])
color = colors[class_ids[i]]
cv2.rectangle(img, (x, y), (x + w, y + h), color, 2)
cv2.putText(img, label, (x, y + 30), font, 3, color, 3)
cv2.imshow("Image", img)
cv2.waitKey(0)
cv2.destroyAllWindows()
```
这个例子使用YOLOv3模型检测一张图像中的物体,并将结果显示出来。在代码中,首先加载YOLO模型文件,并设置参数。然后读取图像,并进行检测。最后将结果显示出来。
这只是一个简单的例子,实际应用中可能需要根据具体情况进行修改。
阅读全文