-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdvs128_glumpy.py
120 lines (94 loc) · 3.02 KB
/
dvs128_glumpy.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
"""DVS128 Test.
Author: Yuhuang Hu
Email : duguyue100@gmail.com
"""
from __future__ import print_function
import threading
import numpy as np
from glumpy import app, gloo, gl
from pyaer.dvs128 import DVS128
device = DVS128()
print ("Device ID:", device.device_id)
if device.device_is_master:
print ("Device is master.")
else:
print ("Device is slave.")
print ("Device Serial Number:", device.device_serial_number)
print ("Device String:", device.device_string)
print ("Device USB bus Number:", device.device_usb_bus_number)
print ("Device USB device address:", device.device_usb_device_address)
print ("Device size X:", device.dvs_size_X)
print ("Device size Y:", device.dvs_size_Y)
print ("Logic Version:", device.logic_version)
data_stream = False
lock = threading.Lock()
clip_value = 3
histrange = [(0, v) for v in (128, 128)]
vertex = """
attribute vec2 position;
attribute vec2 texcoord;
varying vec2 v_texcoord;
void main()
{
gl_Position = vec4(position, 0.0, 1.0);
v_texcoord = texcoord;
}
"""
fragment = """
uniform sampler2D texture;
varying vec2 v_texcoord;
void main()
{
gl_FragColor = texture2D(texture, v_texcoord);
}
"""
window = app.Window(width=1024, height=1024, aspect=1)
img_array = (np.random.uniform(
0, 1, (128, 128, 3))*250).astype(np.uint8)
@window.event
def on_close():
global device
print ("Shutting down the device")
device.shutdown()
del device
@window.event
def on_draw(dt):
global data_stream, device, event_list
window.clear()
if data_stream is False:
device.start_data_stream()
# setting bias after data stream
device.set_bias_from_json("./scripts/configs/dvs128_config.json")
data_stream = True
lock.acquire()
(pol_events, num_pol_event,
special_events, num_special_event) = \
device.get_event()
if num_pol_event != 0:
pol_on = (pol_events[:, 3] == 1)
pol_off = np.logical_not(pol_on)
img_on, _, _ = np.histogram2d(
pol_events[pol_on, 2], pol_events[pol_on, 1],
bins=(128, 128), range=histrange)
img_off, _, _ = np.histogram2d(
pol_events[pol_off, 2], pol_events[pol_off, 1],
bins=(128, 128), range=histrange)
if clip_value is not None:
integrated_img = np.clip(
(img_on-img_off), -clip_value, clip_value)
else:
integrated_img = (img_on-img_off)
img_array = ((integrated_img+clip_value)/float(
clip_value*2)*255).astype(np.uint8)
img_array = img_array[..., np.newaxis].repeat(3, axis=2)
else:
img_array = (np.random.uniform(
0, 1, (128, 128, 3))*250).astype(np.uint8)
quad["texture"] = img_array
quad.draw(gl.GL_TRIANGLE_STRIP)
lock.release()
quad = gloo.Program(vertex, fragment, count=4)
quad['position'] = [(-1, -1), (-1, +1), (+1, -1), (+1, +1)]
quad['texcoord'] = [(0, 1), (0, 0), (1, 1), (1, 0)]
quad['texture'] = img_array
app.run(framerate=150)