-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample_openCV_video.py
71 lines (54 loc) · 1.8 KB
/
example_openCV_video.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
from ximea import xiapi
import cv2
import time
def ResizeWithAspectRatio(image, width=None, height=None, inter=cv2.INTER_AREA):
dim = None
(h, w) = image.shape[:2]
if width is None and height is None:
return image
if width is None:
r = height / float(h)
dim = (int(w * r), height)
else:
r = width / float(w)
dim = (width, int(h * r))
return cv2.resize(image, dim, interpolation=inter)
#create instance for first connected camera
cam = xiapi.Camera()
#start communication
print('Opening first camera...')
cam.open_device()
#settings
cam.set_exposure(9090)
#create instance of Image to store image data and metadata
img = xiapi.Image()
#start data acquisition
print('Starting data acquisition...')
cam.start_acquisition()
try:
print('Starting video. Press CTRL+C to exit.')
t0 = time.time()
while True:
#get data and pass them from camera to img
cam.get_image(img)
#create numpy array with data from camera. Dimensions of the array are
#determined by imgdataformat
data = img.get_image_data_numpy()
#show acquired image with time since the beginning of acquisition
font = cv2.FONT_HERSHEY_SIMPLEX
text = '{:5.2f}'.format(time.time()-t0)
cv2.putText(
data, text, (900,150), font, 4, (255, 255, 255), 2
)
resize = ResizeWithAspectRatio(data, width=1000)
cv2.imshow('XiCAM example', resize)
cv2.moveWindow("XiCAM example", 1000,0);
cv2.waitKey(1)
except KeyboardInterrupt:
cv2.destroyAllWindows()
#stop data acquisition
print('Stopping acquisition...')
cam.stop_acquisition()
#stop communication
cam.close_device()
print('Done.')