-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontrol.py
42 lines (36 loc) · 1.05 KB
/
control.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
from realsense_basic import Camera
import cv2
import time
def continueRun(func, cam=False):
""" Run forever with func """
try:
# init camera
if not cam:
camera = Camera()
else:
camera = cam
# forever
while True:
# read
color_image, depth_image = camera.read()
if color_image is None:
return
ok, images = func(camera, color_image, depth_image)
if ok: # A flag to break
break
# Show images
cv2.namedWindow('RealSense', cv2.WINDOW_AUTOSIZE)
cv2.imshow('RealSense', images)
key = cv2.waitKey(10)
# time.sleep(0.1)
if key & 0xFF == ord('q') or key == 27:
cv2.destroyAllWindows()
break
finally:
if not cam:
camera.stop()
def continueRunSimple(func):
""" Run forever with func no camera instance as input """
def wrap(a, b, c):
return func(b, c)
continueRun(wrap)