-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmaster.py
129 lines (113 loc) · 3.02 KB
/
master.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
from subprocess import run
import sys
import cv2
import RPi.GPIO as GPIO
from time import sleep
GPIO.setmode(GPIO.BCM) #Setting the Mode to use. I am using the BCM setup
GPIO.setwarnings(False)
velocity = 100
runTime = .11
error = 0.03
stopTime = 0.1
iterations = 3
int1 = 21
int2 = 20
GPIO.setup(int1, GPIO.OUT)
GPIO.setup(int2, GPIO.OUT)
PWM1 = GPIO.PWM(21, 100)
PWM2 = GPIO.PWM(20, 100)
PWM1.start(0)
PWM2.start(0)
for i in range(0,iterations):
cap = cv2.VideoCapture(0)
while cap.isOpened()==False:
print("Camera couldn't start. Trying again...")
sleep(5)
cap=cv2.VideoCapture(0)
print("iter:" + str(i))
GPIO.output(int2,False)
PWM1.ChangeDutyCycle(velocity)
sleep(runTime)
GPIO.output(int1, GPIO.LOW)
PWM1.ChangeDutyCycle(0)
GPIO.output(int2, False)
sleep(0.1)
ret, img = cap.read()
imagename = "test.jpg"
cv2.imwrite(imagename, img)
run(["python", "-W", "ignore", "detect.py", imagename])
run(["python", "-W", "ignore", "spreadsheet.py", ])
run(["python","-W", "ignore", "identify.py", ])
run(["rm", "test.jpg"])
cap.release()
sleep(stopTime)
for i in range(0,iterations):
cap = cv2.VideoCapture(0)
while cap.isOpened()==False:
print("Camera couldn't start. Trying again...")
sleep(5)
cap=cv2.VideoCapture(0)
print("iter:" +str(i))
GPIO.output(int1, False)
PWM2.ChangeDutyCycle(velocity)
sleep(runTime-error)
GPIO.output(int2, GPIO.LOW)
PWM2.ChangeDutyCycle(0)
GPIO.output(int1, False)
sleep(0.1)
ret, img = cap.read()
imagename = "test.jpg"
cv2.imwrite(imagename, img)
run(["python", "-W", "ignore", "detect.py", imagename])
run(["python", "-W", "ignore", "spreadsheet.py", ])
run(["python","-W", "ignore", "identify.py", ])
run(["rm", "test.jpg"])
cap.release()
sleep(stopTime)
for i in range(0,iterations):
cap = cv2.VideoCapture(0)
while cap.isOpened()==False:
print("Camera couldn't start. Trying again...")
sleep(5)
cap=cv2.VideoCapture(0)
print("iter:" +str(i))
GPIO.output(int1, False)
PWM2.ChangeDutyCycle(velocity)
sleep(runTime)
GPIO.output(int2, GPIO.LOW)
PWM2.ChangeDutyCycle(0)
GPIO.output(int1, False)
sleep(0.1)
ret, img = cap.read()
imagename = "test.jpg"
cv2.imwrite(imagename, img)
run(["python", "-W", "ignore", "detect.py", imagename])
run(["python", "-W", "ignore", "spreadsheet.py", ])
run(["python","-W", "ignore", "identify.py", ])
run(["rm", "test.jpg"])
cap.release()
sleep(stopTime)
for i in range(0,iterations):
cap = cv2.VideoCapture(0)
while cap.isOpened()==False:
print("Camera couldn't start. Trying again...")
sleep(5)
cap=cv2.VideoCapture(0)
print("iter:" +str(i))
GPIO.output(int2,False)
PWM1.ChangeDutyCycle(velocity)
sleep(runTime-error/2)
GPIO.output(int1, GPIO.LOW)
PWM1.ChangeDutyCycle(0)
GPIO.output(int2, False)
sleep(0.1)
ret, img = cap.read()
imagename = "test.jpg"
cv2.imwrite(imagename, img)
run(["python", "-W", "ignore", "detect.py", imagename])
run(["python", "-W", "ignore", "spreadsheet.py", ])
run(["python","-W", "ignore", "identify.py", ])
run(["rm", "test.jpg"])
cap.release()
sleep(stopTime)
GPIO.cleanup()