Skip to content

Commit 64e0b75

Browse files
author
Alper Ekmekci
committed
IF conditions has been made.
1 parent 608ca6c commit 64e0b75

6 files changed

+17
-21
lines changed

src/config_voc.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"min_input_size": 224,
44
"max_input_size": 480,
55
"anchors": [24,34, 46,84, 68,185, 116,286, 122,97, 171,180, 214,327, 326,193, 359,359],
6-
"labels": ["aeroplane", "bicycle", "bird", "boat", "bottle", "bus", "car", "cat", "chair", "cow", "diningtable", "dog", "horse", "motorbike", "person", "pottedplant", "sheep", "sofa", "train", "tvmonitor"]
6+
"labels": ["aeroplane", "bicycle", "bird", "boat", "bottle", "bus", "car", "cat", "chair", "cow", "diningtable", "dog", "horse", "motorbike", "Insan", "pottedplant", "sheep", "sofa", "train", "tvmonitor"]
77
},
88

99
"train": {
-1 Bytes
Binary file not shown.

utils/__pycache__/bbox.cpython-36.pyc

175 Bytes
Binary file not shown.
-1 Bytes
Binary file not shown.
-1 Bytes
Binary file not shown.

webcam.py

+16-20
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import math
1919
import socket
2020

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

2424

@@ -30,6 +30,8 @@ def main():
3030
net_h, net_w = 64, 64
3131
obj_thresh, nms_thresh = 0.5, 0.45
3232

33+
#os.environ['CUDA_VISIBLE_DEVICES'] = config['train']['gpus']
34+
#print(os.environ
3335
infer_model = load_model(config['train']['saved_weights_name'])
3436
cap = cv2.VideoCapture(0)
3537
#cap = cv2.VideoCapture('test.mp4')
@@ -55,9 +57,9 @@ def main():
5557
width : 640
5658
heigt : 480
5759
"""
58-
60+
5961
"""
60-
External Webcam Resolution:
62+
External Cam Resolution
6163
width : 1280
6264
height : 720
6365
"""
@@ -93,30 +95,24 @@ def main():
9395
if bbox.any() != None:
9496
print("Detection is True")
9597
#0-640 arası degerler degisecek
96-
if (mid_point > 0) and (mid_point <):
97-
#send udp
98-
#message = ...
99-
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
100-
sock.sendto(MESSAGE, (UDP_IP, UDP_PORT))
101-
elif mid_point > 0) and (mid_point <):
102-
#send udp
103-
#message = ....encode()
98+
if (mid_point > 0) and (mid_point < first_slice):
99+
MESSAGE = "ilk_parca"
104100
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
105101
sock.sendto(MESSAGE, (UDP_IP, UDP_PORT))
106-
elif mid_point > 0) and (mid_point <):
107-
#send udp
108-
#message = ...
102+
print("PWM_1 yakıldı")
103+
elif (mid_point >= first_slice) and (mid_point < second_slice):
104+
MESSAGE = "ikinci_parca"
109105
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
110106
sock.sendto(MESSAGE, (UDP_IP, UDP_PORT))
111-
elif mid_point > 0) and (mid_point <):
112-
#send udp
113-
#message = ...
107+
print("PWM_2 yakıldı")
108+
elif (mid_point >= second_slice):
109+
MESSAGE = "oropsu_mehmet"
114110
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
115111
sock.sendto(MESSAGE, (UDP_IP, UDP_PORT))
116-
117-
118-
except:
112+
print("PWM_3 yakıldı")
113+
119114
#DETECTION IS FALSE BLOCK
115+
except:
120116
print("detection yok")
121117
print(bbox)
122118

0 commit comments

Comments
 (0)