|
18 | 18 | import math
|
19 | 19 | import socket
|
20 | 20 |
|
21 |
| -UDP_IP = "xxxx" #RASPI IP ADRESİ |
| 21 | +UDP_IP = "192.168.1.20" #RASPI IP ADRESİ |
22 | 22 | UDP_PORT = 8888
|
23 | 23 |
|
24 | 24 |
|
25 | 25 | def main():
|
26 |
| - config_path = "config_voc.json" |
| 26 | + config_path = "src/config_voc.json" |
27 | 27 |
|
28 | 28 | with open(config_path) as config_buffer:
|
29 | 29 | config = json.load(config_buffer)
|
30 |
| - net_h, net_w = 64, 64 |
| 30 | + net_h, net_w = 128, 128 |
31 | 31 | obj_thresh, nms_thresh = 0.5, 0.45
|
32 | 32 |
|
33 |
| - #os.environ['CUDA_VISIBLE_DEVICES'] = config['train']['gpus'] |
34 |
| - #print(os.environ |
| 33 | + |
35 | 34 | infer_model = load_model(config['train']['saved_weights_name'])
|
36 |
| - cap = cv2.VideoCapture(0) |
| 35 | + cap = cv2.VideoCapture(2) |
37 | 36 | #cap = cv2.VideoCapture('test.mp4')
|
38 | 37 | images = []
|
| 38 | + cap.set(3, 1280) |
| 39 | + cap.set(4, 720) |
39 | 40 | cam_width = cap.get(cv2.CAP_PROP_FRAME_WIDTH)
|
40 | 41 | cam_height = cap.get(cv2.CAP_PROP_FRAME_HEIGHT)
|
41 | 42 |
|
@@ -67,58 +68,51 @@ def main():
|
67 | 68 | while True:
|
68 | 69 | ret, image = cap.read()
|
69 | 70 | stime = time.time()
|
70 |
| - if ret: |
| 71 | + if ret: |
71 | 72 | images += [image]
|
72 | 73 | batch_boxes = get_yolo_boxes(infer_model, images, net_h, net_w, config['model']['anchors'], obj_thresh, nms_thresh)
|
73 | 74 |
|
74 | 75 | for i in range(len(images)):
|
75 | 76 | images[i], bbox, xmax, ymax = draw_boxes(images[i], batch_boxes[i], config['model']['labels'], obj_thresh)
|
76 | 77 | if xmax != None:
|
77 |
| - print("Detection True First Kontrol") |
| 78 | + print("Detection True") |
78 | 79 | print("XMAX :", xmax[0])
|
79 | 80 | print("YMAX :", ymax[0])
|
80 | 81 | print("XMIN : ", bbox[0][0])
|
81 | 82 | print("Mid Point : ", (xmax[0]+(bbox[0][0] + 3)) / 2)
|
82 | 83 | mid_point = math.ceil((xmax[0]+(bbox[0][0] + 3)) / 2)
|
83 | 84 | mid_point_line_1 = (mid_point, ymax + 10)
|
84 | 85 | mid_point_line_2 = (mid_point, ymax - 30)
|
85 |
| - cv2.line(images[i], mid_point_line_1, mid_point_line_2, (0, 255, 0)) |
86 |
| - |
87 |
| - cv2.line(images[i], line_1_1, line_1_2, (255, 0, 0)) |
88 |
| - cv2.line(images[i], line_2_1, line_2_2, (255, 0, 0)) |
89 |
| - cv2.namedWindow("Video Stream", cv2.WND_PROP_FULLSCREEN) |
90 |
| - cv2.setWindowProperty("Video Stream", cv2.WND_PROP_FULLSCREEN, cv2.WINDOW_FULLSCREEN) |
91 |
| - cv2.imshow('Video Stream', images[i]) |
92 |
| - |
93 |
| - try: |
94 |
| - #DETECTION IS TRUE BLOCK |
95 |
| - if bbox.any() != None: |
96 |
| - print("Detection is True") |
97 |
| - #0-640 arası degerler degisecek |
98 |
| - if (mid_point > 0) and (mid_point < first_slice): |
99 |
| - MESSAGE = "first_pwm" |
100 |
| - sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) |
101 |
| - sock.sendto(MESSAGE, (UDP_IP, UDP_PORT)) |
102 |
| - print("PWM_1") |
103 |
| - elif (mid_point >= first_slice) and (mid_point < second_slice): |
104 |
| - MESSAGE = "second_pwm" |
105 |
| - sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) |
106 |
| - sock.sendto(MESSAGE, (UDP_IP, UDP_PORT)) |
107 |
| - print("PWM_2") |
108 |
| - elif (mid_point >= second_slice): |
109 |
| - MESSAGE = "third_pwm" |
110 |
| - sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) |
111 |
| - sock.sendto(MESSAGE, (UDP_IP, UDP_PORT)) |
112 |
| - print("PWM_3") |
113 |
| - |
114 |
| - #DETECTION IS FALSE BLOCK |
115 |
| - except: |
116 |
| - print("detection yok") |
117 |
| - print(bbox) |
| 86 | + cv2.line(images[i], mid_point_line_1, mid_point_line_2, (0, 255, 0)) |
| 87 | + print("Detection is True") |
| 88 | + #0-640 arası degerler degisecek |
| 89 | + if (mid_point > 0) and (mid_point < first_slice): |
| 90 | + MESSAGE = "first_pwm".encode() |
| 91 | + sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) |
| 92 | + sock.sendto(MESSAGE, (UDP_IP, UDP_PORT)) |
| 93 | + print("PWM_1") |
| 94 | + break |
| 95 | + elif (mid_point >= first_slice) and (mid_point < second_slice): |
| 96 | + MESSAGE = "second_pwm".encode() |
| 97 | + sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) |
| 98 | + sock.sendto(MESSAGE, (UDP_IP, UDP_PORT)) |
| 99 | + print("PWM_2") |
| 100 | + break |
| 101 | + elif (mid_point >= second_slice): |
| 102 | + MESSAGE = "third_pwm".encode() |
| 103 | + sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) |
| 104 | + sock.sendto(MESSAGE, (UDP_IP, UDP_PORT)) |
| 105 | + print("PWM_3") |
| 106 | + break |
118 | 107 |
|
119 |
| - print('FPS {:.1f}'.format(1 / (time.time() - stime))) |
| 108 | + print('FPS {:.1f}'.format(1 / (time.time() - stime))) |
| 109 | + cv2.line(images[i], line_1_1, line_1_2, (255, 0, 0)) |
| 110 | + cv2.line(images[i], line_2_1, line_2_2, (255, 0, 0)) |
| 111 | + cv2.namedWindow("Video Stream", cv2.WND_PROP_FULLSCREEN) |
| 112 | + cv2.setWindowProperty("Video Stream", cv2.WND_PROP_FULLSCREEN, cv2.WINDOW_FULLSCREEN) |
| 113 | + cv2.imshow('Video Stream', images[i]) |
120 | 114 | images = []
|
121 |
| - print("ikinci resim") |
| 115 | + |
122 | 116 | if cv2.waitKey(1) == 27:
|
123 | 117 | break # esc to quit
|
124 | 118 | cv2.destroyAllWindows()
|
|
0 commit comments