OpenCV杂谈_11
一. 需要做的前期准备
- 环境配置:
Python版本:3.7.0
功能包:opencv-python (4.5.1.48)
- 配置文件
coco.names(darknet中常用的标签文件)、frozen_inference_graph.pb(weights文件)、ssd_mobilenet_v3_large_coco_2020_01_14.pbtxt(网络模型)。下载链接:链接在此
具体文件夹构造如下图:
- 一个用的顺手的IDE(本人推荐Pycharm)
二. 源码如下:
import cv2
threshold = 0.6
wCam, hCam = 640, 480
cap = cv2.VideoCapture(0)
cap.set(3, wCam)
cap.set(4, hCam)
classNames = []
classFile = "coco.names"
with open(classFile, 'rt') as f:
classNames = f.read().rstrip('\n').split('\n')
configPath = 'ssd_mobilenet_v3_large_coco_2020_01_14.pbtxt'
weightsPath = 'frozen_inference_graph.pb'
net = cv2.dnn_DetectionModel(weightsPath, configPath)
net.setInputSize(320, 320)
net.setInputScale(1.0 / 127.5)
net.setInputMean((127.5, 127.5, 127.5))
net.setInputSwapRB(True)
while True:
success, img = cap.read()
classIDs, confs, bbox = net.detect(img, confThreshold=threshold)
print(classIDs, bbox)
if len(classIDs) != 0:
for classID, conf, box in zip(classIDs.flatten(), confs.flatten(), bbox):
cv2.rectangle(img, box, color=(255, 0, 0), thickness=2)
cv2.putText(img, classNames[classID - 1].upper(), (box[0] + 10, box[1] + 30),
cv2.FONT_ITALIC, 1, (0, 255, 0), 2)
cv2.putText(img, str(round(conf*100, 2)), (box[0] + 200, box[1] + 30),
cv2.FONT_ITALIC, 1, (0, 255, 0), 2)
cv2.imshow('Output', img)
cv2.waitKey(1)
三. 结果展示
四.感悟与分享
- 在实时的检测过程中其实稳定性并不高,但是精简的代码量以及不用调用GPU进行演算会在一定程度上降低对设备的要求。
- 相关教程推荐:https://www.youtube.com/watch?v=HXDD7-EnGBY (内容为英文,且需要科学上网)
如有问题,敬请指正。欢迎转载,但请注明出处。