-
Notifications
You must be signed in to change notification settings - Fork 0
/
uvctypes_old.py
503 lines (426 loc) · 15.2 KB
/
uvctypes_old.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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
from ctypes import *
import ctypes
import platform
import gc
import sys
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:
print("Error: could not find libuvc!")
# sys.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),
]
class lep_sys_shutter_mode(Structure):
_fields_ = [
("shutterMode", c_uint32),
("tempLockoutState", c_uint32),
("videoFreezeDuringFFC", c_uint32),
("ffcDesired", c_uint32),
("elapsedTimeSinceLastFfc", c_uint32),
("desiredFfcPeriod", c_uint32),
("explicitCmdToOpen", c_bool),
("desiredFfcTempDelta", c_uint16),
("imminentDelay", c_uint16),
]
# LEP_SYS_FFC_SHUTTER_MODE_E shutterMode; /* defines current mode */
# LEP_SYS_SHUTTER_TEMP_LOCKOUT_STATE_E tempLockoutState;
# LEP_SYS_ENABLE_E videoFreezeDuringFFC;
# LEP_SYS_ENABLE_E ffcDesired; /* status of FFC desired */
# LEP_UINT32 elapsedTimeSinceLastFfc; /* in milliseconds x1 */
# LEP_UINT32 desiredFfcPeriod; /* in milliseconds x1 */
# LEP_BOOL explicitCmdToOpen; /* true or false */
# LEP_UINT16 desiredFfcTempDelta; /* in Kelvin x100 */
# LEP_UINT16 imminentDelay; /* in frame counts x1 */
#
# }LEP_SYS_FFC_SHUTTER_MODE_OBJ_T, *LEP_SYS_FFC_SHUTTER_MODE_OBJ_T_PTR;
# Original default shutter mode below is incorrect due to improper ctypes
# Incorrect Default Shutter Info: (1, 0, 0, 0, 1, 0, 1, 0, 48928)
# 1 shutterMode
# 0 tempLockoutState
# 0 videoFreezeDuringFFC
# 0 ffcDesired
# 1 elapsedTimeSinceLastFfc
# 0 desiredFfcPeriod
# True explicitCmdToOpen
# 0 desiredFfcTempDelta
# 48928 imminentDelay
# Correct Default Shutter Info According to IDD: (1, 0, 1, 0, 0, 180000, 0, 150, 52)
# 1 shutterMode
# 0 tempLockoutState
# 1 videoFreezeDuringFFC
# 0 ffcDesired
# 0 elapsedTimeSinceLastFfc
# 180000 desiredFfcPeriod
# False explicitCmdToOpen
# 150 desiredFfcTempDelta
# 52 imminentDelay
# Default Shutter Info According to Lepton on Bootup: (1, 0, 1, 0, 0, 180000, 1, 0, 150)
# 1 shutterMode
# 0 tempLockoutState
# 1 videoFreezeDuringFFC
# 0 ffcDesired
# 0 elapsedTimeSinceLastFfc
# 180000 desiredFfcPeriod
# True explicitCmdToOpen
# 0 desiredFfcTempDelta
# 150 imminentDelay
explicitCmdToOpenVal = 1
desiredFfcTempDeltaVal = 0
imminentDelayVal = 150
sysShutterManual = lep_sys_shutter_mode(
0,
0,
1,
0,
0,
18000000,
explicitCmdToOpenVal,
desiredFfcTempDeltaVal,
imminentDelayVal,
)
sysShutterAuto = lep_sys_shutter_mode(
1,
0,
1,
0,
0,
18000000,
explicitCmdToOpenVal,
desiredFfcTempDeltaVal,
imminentDelayVal,
)
sysShutterExternal = lep_sys_shutter_mode(
2,
0,
1,
0,
0,
1800000,
explicitCmdToOpenVal,
desiredFfcTempDeltaVal,
imminentDelayVal,
)
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 []
def set_manual_ffc(devh):
sizeData = 32
shutter_mode = (c_uint16)(0)
getSDK = 0x3D
controlID = (getSDK >> 2) + 1 # formula from Kurt Kiefer
print("controlID: " + str(controlID))
set_extension_unit(
devh, SYS_UNIT_ID, controlID, byref(sysShutterManual), sizeData
) # set_extension_unit(devh, unit, control, data, size)
def set_auto_ffc(devh):
sizeData = 32
shutter_mode = (c_uint16)(1)
getSDK = 0x3D
controlID = (getSDK >> 2) + 1 # formula from Kurt Kiefer
print("controlID: " + str(controlID))
set_extension_unit(devh, SYS_UNIT_ID, controlID, byref(sysShutterAuto), sizeData)
def set_external_ffc(devh):
sizeData = 32
shutter_mode = (c_uint16)(2) # 2 = external
getSDK = 0x3D
controlID = (getSDK >> 2) + 1 # formula from Kurt Kiefer
print("controlID: " + str(controlID))
set_extension_unit(
devh, SYS_UNIT_ID, controlID, byref(sysShutterExternal), sizeData
)
shutter = lep_sys_shutter_mode()
def print_shutter_info(devh):
getSDK = 0x3C
controlID = (getSDK >> 2) + 1
call_extension_unit(devh, SYS_UNIT_ID, controlID, byref(shutter), 32)
print(
"Shutter Info:\n {0}\t shutterMode\n {1}\t tempLockoutState\n {2}\t videoFreezeDuringFFC\n\
{3}\t ffcDesired\n {4}\t elapsedTimeSinceLastFfc\n {5}\t desiredFfcPeriod\n\
{6}\t explicitCmdToOpen\n {7}\t desiredFfcTempDelta\n {8}\t imminentDelay\n".format(
shutter.shutterMode,
shutter.tempLockoutState,
shutter.videoFreezeDuringFFC,
shutter.ffcDesired,
shutter.elapsedTimeSinceLastFfc,
shutter.desiredFfcPeriod,
shutter.explicitCmdToOpen,
shutter.desiredFfcTempDelta,
shutter.imminentDelay,
)
)
def perform_manual_ffc(devh):
sizeData = 1
shutter_mode = create_string_buffer(sizeData)
# 0x200 Module ID VID
# 0x3C get
# 0x3D set
getSDK = 0x3D
runFFC = 0x42
controlID = (runFFC >> 2) + 1 # formula from Kurt Kiefer
print("controlID: " + str(controlID))
set_extension_unit(
devh, SYS_UNIT_ID, controlID, shutter_mode, sizeData
) # set_extension_unit(devh, unit, control, data, size)
def set_gain_low(devh):
sizeData = 4
gain_mode = (c_uint16)(1) # 0=HIGH, 1=LOW, 2=AUTO
setGainSDK = 0x49
controlID = (setGainSDK >> 2) + 1 # formula from Kurt Kiefer
print("controlID: " + str(controlID))
set_extension_unit(
devh, SYS_UNIT_ID, controlID, byref(gain_mode), sizeData
) # set_extension_unit(devh, unit, control, data, size)
perform_manual_ffc(devh)
def set_gain_high(devh):
sizeData = 4
gain_mode = (c_uint16)(0) # 0=HIGH, 1=LOW, 2=AUTO
setGainSDK = 0x49
controlID = (setGainSDK >> 2) + 1 # formula from Kurt Kiefer
print("controlID: " + str(controlID))
set_extension_unit(
devh, SYS_UNIT_ID, controlID, byref(gain_mode), sizeData
) # set_extension_unit(devh, unit, control, data, size)
perform_manual_ffc(devh)
def set_gain_auto(devh):
sizeData = 4
gain_mode = (c_uint16)(2) # 0=HIGH, 1=LOW, 2=AUTO
setGainSDK = 0x49
controlID = (setGainSDK >> 2) + 1 # formula from Kurt Kiefer
print("controlID: " + str(controlID))
set_extension_unit(
devh, SYS_UNIT_ID, controlID, byref(gain_mode), sizeData
) # set_extension_unit(devh, unit, control, data, size)
perform_manual_ffc(devh)