18
18
import math
19
19
import socket
20
20
21
- UDP_IP = "xxxx" #RASPI IP ADRESS
21
+ UDP_IP = "xxxx" #RASPI IP ADRESİ
22
22
UDP_PORT = 8888
23
23
24
24
@@ -30,6 +30,8 @@ def main():
30
30
net_h , net_w = 64 , 64
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
infer_model = load_model (config ['train' ]['saved_weights_name' ])
34
36
cap = cv2 .VideoCapture (0 )
35
37
#cap = cv2.VideoCapture('test.mp4')
@@ -55,9 +57,9 @@ def main():
55
57
width : 640
56
58
heigt : 480
57
59
"""
58
-
60
+
59
61
"""
60
- External Webcam Resolution:
62
+ External Cam Resolution
61
63
width : 1280
62
64
height : 720
63
65
"""
@@ -93,30 +95,24 @@ def main():
93
95
if bbox .any () != None :
94
96
print ("Detection is True" )
95
97
#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"
104
100
sock = socket .socket (socket .AF_INET , socket .SOCK_DGRAM )
105
101
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"
109
105
sock = socket .socket (socket .AF_INET , socket .SOCK_DGRAM )
110
106
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"
114
110
sock = socket .socket (socket .AF_INET , socket .SOCK_DGRAM )
115
111
sock .sendto (MESSAGE , (UDP_IP , UDP_PORT ))
116
-
117
-
118
- except :
112
+ print ("PWM_3 yakıldı" )
113
+
119
114
#DETECTION IS FALSE BLOCK
115
+ except :
120
116
print ("detection yok" )
121
117
print (bbox )
122
118
0 commit comments