-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
52 lines (42 loc) · 1.33 KB
/
main.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
import cv2
from djitellopy import tello
import cvzone
thres = 0.55
nmsThres = 0.2
#cap = cv2.VideoCapture(0)
#cap.set(3, 640)
#cap.set(4, 480)
classNames = []
classFile = 'coco.names2'
with open(classFile, 'rt') as f:
classNames = f.read().split('\n')
print(classNames)
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)
me = tello.Tello()
me.connect()
print(me.get_battery())
me.streamoff()
me.streamon()
#me.takeoff()
#me.move_up(80)
while True:
#success, img = cap.read()
img = me.get_frame_read().frame
classIds, confs, bbox = net.detect(img, confThreshold=thres, nmsThreshold=nmsThres)
try:
for classId, conf, box in zip(classIds.flatten(), confs.flatten(), bbox):
cvzone.cornerRect(img, box)
cv2.putText(img, f'{classNames[classId - 1].upper()} {round(conf * 100, 2)}',
(box[0] + 10, box[1] + 30), cv2.FONT_HERSHEY_COMPLEX_SMALL,
1, (0, 255, 0), 2)
except:
pass
me.send_rc_control(0, 0, 0, 0)
cv2.imshow("Image", img)
cv2.waitKey(1)