-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.py
54 lines (45 loc) · 1.8 KB
/
app.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
47
48
49
50
51
52
53
54
import numpy as np
import cv2
thres = 0.5 # Threshold to detect object
nms_threshold = 0.2 #(0.1 to 1) 1 means no suppress , 0.1 means high suppress
cap = cv2.VideoCapture(0) # Use 0 for built-in webcam, 1 for external webcam
cap.set(cv2.CAP_PROP_FRAME_WIDTH,800) #width
cap.set(cv2.CAP_PROP_FRAME_HEIGHT,600) #height
cap.set(cv2.CAP_PROP_BRIGHTNESS,100) #brightness
classNames = []
with open('objects.txt','r') as f:
classNames = f.read().splitlines()
print(classNames)
font = cv2.FONT_HERSHEY_PLAIN
#font = cv2.FONT_HERSHEY_COMPLEX
Colors = np.random.uniform(0, 255, size=(len(classNames), 3))
weightsPath = "frozen_inference_graph.pb"
configPath = "ssd_mobilenet_v3_large_coco_2020_01_14.pbtxt"
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=thres)
bbox = list(bbox)
confs = list(np.array(confs).reshape(1,-1)[0])
confs = list(map(float,confs))
indices = cv2.dnn.NMSBoxes(bbox,confs,thres,nms_threshold)
print("Indices:", indices) # print to debug
print("Type of indices:", type(indices)) # print to debug
if len(classIds) != 0:
for i in indices:
box = bbox[i]
color = Colors[classIds[i]-1]
confidence = str(round(confs[i],2))
x,y,w,h = box[0],box[1],box[2],box[3]
cv2.rectangle(img, (x,y), (x+w,y+h), color, thickness=2)
cv2.putText(img, classNames[classIds[i]-1]+" "+confidence,(x+10,y+20),
font,1,color,2)
cv2.imshow("Output",img)
if cv2.waitKey(1) & 0xFF == ord('q'): # Add a condition to quit the loop
break
cap.release()
cv2.destroyAllWindows()