-
Notifications
You must be signed in to change notification settings - Fork 0
/
uvctypes.py
255 lines (223 loc) · 9.8 KB
/
uvctypes.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
# this file comes form here: https://github.com/groupgets/purethermal1-uvc-capture/blob/master/python/uvctypes.py
from ctypes import *
import platform
try:
if platform.system() == 'Darwin':
libuvc = cdll.LoadLibrary("libuvc.dylib")
elif platform.system() == 'Linux':
libuvc = cdll.LoadLibrary("libuvc.so")
else:
libuvc = cdll.LoadLibrary("libuvc")
except OSError as e:
print(e)
print("Error: could not find libuvc!")
exit(1)
class uvc_context(Structure):
_fields_ = [("usb_ctx", c_void_p),
("own_usb_ctx", c_uint8),
("open_devices", c_void_p),
("handler_thread", c_ulong),
("kill_handler_thread", c_int)]
class uvc_device(Structure):
_fields_ = [("ctx", POINTER(uvc_context)),
("ref", c_int),
("usb_dev", c_void_p)]
class uvc_stream_ctrl(Structure):
_fields_ = [("bmHint", c_uint16),
("bFormatIndex", c_uint8),
("bFrameIndex", c_uint8),
("dwFrameInterval", c_uint32),
("wKeyFrameRate", c_uint16),
("wPFrameRate", c_uint16),
("wCompQuality", c_uint16),
("wCompWindowSize", c_uint16),
("wDelay", c_uint16),
("dwMaxVideoFrameSize", c_uint32),
("dwMaxPayloadTransferSize", c_uint32),
("dwClockFrequency", c_uint32),
("bmFramingInfo", c_uint8),
("bPreferredVersion", c_uint8),
("bMinVersion", c_uint8),
("bMaxVersion", c_uint8),
("bInterfaceNumber", c_uint8)]
class uvc_format_desc(Structure):
pass
class uvc_frame_desc(Structure):
pass
uvc_frame_desc._fields_ = [
("parent", POINTER(uvc_format_desc)),
("prev", POINTER(uvc_frame_desc)),
("next", POINTER(uvc_frame_desc)),
# /** Type of frame, such as JPEG frame or uncompressed frme */
("bDescriptorSubtype", c_uint), # enum uvc_vs_desc_subtype bDescriptorSubtype;
# /** Index of the frame within the list of specs available for this format */
("bFrameIndex", c_uint8),
("bmCapabilities", c_uint8),
# /** Image width */
("wWidth", c_uint16),
# /** Image height */
("wHeight", c_uint16),
# /** Bitrate of corresponding stream at minimal frame rate */
("dwMinBitRate", c_uint32),
# /** Bitrate of corresponding stream at maximal frame rate */
("dwMaxBitRate", c_uint32),
# /** Maximum number of bytes for a video frame */
("dwMaxVideoFrameBufferSize", c_uint32),
# /** Default frame interval (in 100ns units) */
("dwDefaultFrameInterval", c_uint32),
# /** Minimum frame interval for continuous mode (100ns units) */
("dwMinFrameInterval", c_uint32),
# /** Maximum frame interval for continuous mode (100ns units) */
("dwMaxFrameInterval", c_uint32),
# /** Granularity of frame interval range for continuous mode (100ns) */
("dwFrameIntervalStep", c_uint32),
# /** Frame intervals */
("bFrameIntervalType", c_uint8),
# /** number of bytes per line */
("dwBytesPerLine", c_uint32),
# /** Available frame rates, zero-terminated (in 100ns units) */
("intervals", POINTER(c_uint32))]
uvc_format_desc._fields_ = [
("parent", c_void_p),
("prev", POINTER(uvc_format_desc)),
("next", POINTER(uvc_format_desc)),
# /** Type of image stream, such as JPEG or uncompressed. */
("bDescriptorSubtype", c_uint), # enum uvc_vs_desc_subtype bDescriptorSubtype;
# /** Identifier of this format within the VS interface's format list */
("bFormatIndex", c_uint8),
("bNumFrameDescriptors", c_uint8),
# /** Format specifier */
("guidFormat", c_char * 16), # union { uint8_t guidFormat[16]; uint8_t fourccFormat[4]; }
# /** Format-specific data */
("bBitsPerPixel", c_uint8),
# /** Default {uvc_frame_desc} to choose given this format */
("bDefaultFrameIndex", c_uint8),
("bAspectRatioX", c_uint8),
("bAspectRatioY", c_uint8),
("bmInterlaceFlags", c_uint8),
("bCopyProtect", c_uint8),
("bVariableSize", c_uint8),
# /** Available frame specifications for this format */
("frame_descs", POINTER(uvc_frame_desc))]
class timeval(Structure):
_fields_ = [("tv_sec", c_long), ("tv_usec", c_long)]
class uvc_frame(Structure):
_fields_ = [# /** Image data for this frame */
("data", POINTER(c_uint8)),
# /** Size of image data buffer */
("data_bytes", c_size_t),
# /** Width of image in pixels */
("width", c_uint32),
# /** Height of image in pixels */
("height", c_uint32),
# /** Pixel data format */
("frame_format", c_uint), # enum uvc_frame_format frame_format
# /** Number of bytes per horizontal line (undefined for compressed format) */
("step", c_size_t),
# /** Frame number (may skip, but is strictly monotonically increasing) */
("sequence", c_uint32),
# /** Estimate of system time when the device started capturing the image */
("capture_time", timeval),
# /** Handle on the device that produced the image.
# * @warning You must not call any uvc_* functions during a callback. */
("source", POINTER(uvc_device)),
# /** Is the data buffer owned by the library?
# * If 1, the data buffer can be arbitrarily reallocated by frame conversion
# * functions.
# * If 0, the data buffer will not be reallocated or freed by the library.
# * Set this field to zero if you are supplying the buffer.
# */
("library_owns_data", c_uint8)]
class uvc_device_handle(Structure):
_fields_ = [("dev", POINTER(uvc_device)),
("prev", c_void_p),
("next", c_void_p),
("usb_devh", c_void_p),
("info", c_void_p),
("status_xfer", c_void_p),
("status_buf", c_ubyte * 32),
("status_cb", c_void_p),
("status_user_ptr", c_void_p),
("button_cb", c_void_p),
("button_user_ptr", c_void_p),
("streams", c_void_p),
("is_isight", c_ubyte)]
class lep_oem_sw_version(Structure):
_fields_ = [("gpp_major", c_ubyte),
("gpp_minor", c_ubyte),
("gpp_build", c_ubyte),
("dsp_major", c_ubyte),
("dsp_minor", c_ubyte),
("dsp_build", c_ubyte),
("reserved", c_ushort)]
def call_extension_unit(devh, unit, control, data, size):
return libuvc.uvc_get_ctrl(devh, unit, control, data, size, 0x81)
def set_extension_unit(devh, unit, control, data, size):
return libuvc.uvc_set_ctrl(devh, unit, control, data, size, 0x81)
PT_USB_VID = 0x1e4e
PT_USB_PID = 0x0100
AGC_UNIT_ID = 3
OEM_UNIT_ID = 4
RAD_UNIT_ID = 5
SYS_UNIT_ID = 6
VID_UNIT_ID = 7
UVC_FRAME_FORMAT_UYVY = 4
UVC_FRAME_FORMAT_I420 = 5
UVC_FRAME_FORMAT_RGB = 7
UVC_FRAME_FORMAT_BGR = 8
UVC_FRAME_FORMAT_Y16 = 13
VS_FMT_GUID_GREY = create_string_buffer(
b"Y8 \x00\x00\x10\x00\x80\x00\x00\xaa\x00\x38\x9b\x71", 16
)
VS_FMT_GUID_Y16 = create_string_buffer(
b"Y16 \x00\x00\x10\x00\x80\x00\x00\xaa\x00\x38\x9b\x71", 16
)
VS_FMT_GUID_YUYV = create_string_buffer(
b"UYVY\x00\x00\x10\x00\x80\x00\x00\xaa\x00\x38\x9b\x71", 16
)
VS_FMT_GUID_NV12 = create_string_buffer(
b"NV12\x00\x00\x10\x00\x80\x00\x00\xaa\x00\x38\x9b\x71", 16
)
VS_FMT_GUID_YU12 = create_string_buffer(
b"I420\x00\x00\x10\x00\x80\x00\x00\xaa\x00\x38\x9b\x71", 16
)
VS_FMT_GUID_BGR3 = create_string_buffer(
b"\x7d\xeb\x36\xe4\x4f\x52\xce\x11\x9f\x53\x00\x20\xaf\x0b\xa7\x70", 16
)
VS_FMT_GUID_RGB565 = create_string_buffer(
b"RGBP\x00\x00\x10\x00\x80\x00\x00\xaa\x00\x38\x9b\x71", 16
)
libuvc.uvc_get_format_descs.restype = POINTER(uvc_format_desc)
def print_device_info(devh):
vers = lep_oem_sw_version()
call_extension_unit(devh, OEM_UNIT_ID, 9, byref(vers), 8)
print("Version gpp: {0}.{1}.{2} dsp: {3}.{4}.{5}".format(
vers.gpp_major, vers.gpp_minor, vers.gpp_build,
vers.dsp_major, vers.dsp_minor, vers.dsp_build,
))
flir_pn = create_string_buffer(32)
call_extension_unit(devh, OEM_UNIT_ID, 8, flir_pn, 32)
print("FLIR part #: {0}".format(flir_pn.raw))
flir_sn = create_string_buffer(8)
call_extension_unit(devh, SYS_UNIT_ID, 3, flir_sn, 8)
print("FLIR serial #: {0}".format(repr(flir_sn.raw)))
def uvc_iter_formats(devh):
p_format_desc = libuvc.uvc_get_format_descs(devh)
while p_format_desc:
yield p_format_desc.contents
p_format_desc = p_format_desc.contents.next
def uvc_iter_frames_for_format(devh, format_desc):
p_frame_desc = format_desc.frame_descs
while p_frame_desc:
yield p_frame_desc.contents
p_frame_desc = p_frame_desc.contents.next
def print_device_formats(devh):
for format_desc in uvc_iter_formats(devh):
print("format: {0}".format(format_desc.guidFormat[0:4]))
for frame_desc in uvc_iter_frames_for_format(devh, format_desc):
print(" frame {0}x{1} @ {2}fps".format(frame_desc.wWidth, frame_desc.wHeight, int(1e7 / frame_desc.dwDefaultFrameInterval)))
def uvc_get_frame_formats_by_guid(devh, vs_fmt_guid):
for format_desc in uvc_iter_formats(devh):
if vs_fmt_guid[0:4] == format_desc.guidFormat[0:4]:
return [fmt for fmt in uvc_iter_frames_for_format(devh, format_desc)]
return []