-
Notifications
You must be signed in to change notification settings - Fork 3
/
objectDetectionvideo.py
46 lines (34 loc) · 1.15 KB
/
objectDetectionvideo.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import cv2
import numpy as np
cam = cv2.VideoCapture(0)
# video dimensions
#length
# cam.set(3,740)
# width
# cam.set(4,580)
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'
weightPath='frozen_inference_graph.pb'
net = cv2.dnn_DetectionModel(weightPath, configPath)
net.setInputSize(320 , 230)
net.setInputScale(1.0 / 127.5)
net.setInputMean((127.5, 127.5, 127.5))
net.setInputSwapRB(True)
# clssIds: the returned ids , confs: the confidence , bbox: the drawn box
while True:
ret, img = cam.read()
classIds,confs,bbox=net.detect(img,confThreshold=0.5)
#confThreshold
print(classIds,bbox)
if len(classIds) !=0:
for classid, confidence, box in zip(classIds.flatten() ,confs.flatten(), bbox):
cv2.rectangle(img , box ,color=(0,255,0),thickness=1)
cv2.putText(img , classNames[classid-1] , (box[0]+10 ,box[1]+20 ),cv2.FONT_HERSHEY_SIMPLEX,1,(0,255,0),thickness=1)
cv2.imshow('frame',img)
if cv2.waitKey(0) & 0xFF == 27:
break
cam.release()
cv2.destroyAllWindows()