This repository was archived by the owner on Mar 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathhand_detection.py
64 lines (52 loc) · 1.69 KB
/
hand_detection.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
#!/usr/bin/env python
import numpy as np
import cv2
import argparse
import color_calculator as cc
import color_detection as cd
import video_detection as vd
def analyse_args():
"""Parses the args"""
parser = argparse.ArgumentParser()
parser.add_argument(
'-i', '--input', default=None, help='Place ROI on the left')
parser.add_argument(
'-l', '--left', action='store_true', help='Place ROI on the left')
parser.add_argument(
'-s',
'--shot',
action='store_true',
help='Not video, just a single shot')
return parser.parse_args()
def main():
"""Main function of the app"""
args = analyse_args()
video_capture = cv2.VideoCapture(0)
lower_color = np.array([0, 50, 120], dtype=np.uint8)
upper_color = np.array([180, 150, 250], dtype=np.uint8)
while True:
_, frame = video_capture.read()
frame = cv2.flip(frame, 1)
cv2.putText(frame, 'Welcome', (0, 50), cv2.FONT_HERSHEY_SIMPLEX, 2,
(255, 0, 0), 3, cv2.LINE_AA)
cv2.imshow('VCOM Project', frame)
key = cv2.waitKey(10)
if key != -1:
cv2.destroyAllWindows()
video_capture.release()
break
if key == ord('v'):
try:
avg_color, max_sensibility = cc.captureCamera(args.left)
vd.start(
avg_color,
max_sensibility,
video=not args.shot,
path=args.input,
left=args.left)
except TypeError:
print 'Did not calculate the color bound.'
elif key == ord('h'):
cd.draw_contours(lower_color, upper_color)
if __name__ == '__main__':
main()