Skip to content

Commit f91e575

Browse files
author
Alper Ekmekci
committed
Send UDP messages to RASPI and some algorithm fixes
1 parent e18191b commit f91e575

File tree

1 file changed

+37
-43
lines changed

1 file changed

+37
-43
lines changed

webcam.py

+37-43
Original file line numberDiff line numberDiff line change
@@ -18,24 +18,25 @@
1818
import math
1919
import socket
2020

21-
UDP_IP = "xxxx" #RASPI IP ADRESİ
21+
UDP_IP = "192.168.1.20" #RASPI IP ADRESİ
2222
UDP_PORT = 8888
2323

2424

2525
def main():
26-
config_path = "config_voc.json"
26+
config_path = "src/config_voc.json"
2727

2828
with open(config_path) as config_buffer:
2929
config = json.load(config_buffer)
30-
net_h, net_w = 64, 64
30+
net_h, net_w = 128, 128
3131
obj_thresh, nms_thresh = 0.5, 0.45
3232

33-
#os.environ['CUDA_VISIBLE_DEVICES'] = config['train']['gpus']
34-
#print(os.environ
33+
3534
infer_model = load_model(config['train']['saved_weights_name'])
36-
cap = cv2.VideoCapture(0)
35+
cap = cv2.VideoCapture(2)
3736
#cap = cv2.VideoCapture('test.mp4')
3837
images = []
38+
cap.set(3, 1280)
39+
cap.set(4, 720)
3940
cam_width = cap.get(cv2.CAP_PROP_FRAME_WIDTH)
4041
cam_height = cap.get(cv2.CAP_PROP_FRAME_HEIGHT)
4142

@@ -67,58 +68,51 @@ def main():
6768
while True:
6869
ret, image = cap.read()
6970
stime = time.time()
70-
if ret:
71+
if ret:
7172
images += [image]
7273
batch_boxes = get_yolo_boxes(infer_model, images, net_h, net_w, config['model']['anchors'], obj_thresh, nms_thresh)
7374

7475
for i in range(len(images)):
7576
images[i], bbox, xmax, ymax = draw_boxes(images[i], batch_boxes[i], config['model']['labels'], obj_thresh)
7677
if xmax != None:
77-
print("Detection True First Kontrol")
78+
print("Detection True")
7879
print("XMAX :", xmax[0])
7980
print("YMAX :", ymax[0])
8081
print("XMIN : ", bbox[0][0])
8182
print("Mid Point : ", (xmax[0]+(bbox[0][0] + 3)) / 2)
8283
mid_point = math.ceil((xmax[0]+(bbox[0][0] + 3)) / 2)
8384
mid_point_line_1 = (mid_point, ymax + 10)
8485
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
118107

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])
120114
images = []
121-
print("ikinci resim")
115+
122116
if cv2.waitKey(1) == 27:
123117
break # esc to quit
124118
cv2.destroyAllWindows()

0 commit comments

Comments
 (0)