pyorbbec 1.0.1.6__py3-none-any.whl → 1.0.1.8__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. {pyorbbec-1.0.1.6.dist-info → pyorbbec-1.0.1.8.dist-info}/METADATA +1 -1
  2. pyorbbec-1.0.1.8.dist-info/RECORD +59 -0
  3. pyorbbecsdk/OrbbecSDKConfig.xml +2332 -0
  4. pyorbbecsdk/examples/.gitkeep +0 -0
  5. pyorbbecsdk/examples/OrbbecSDK.dll +0 -0
  6. pyorbbecsdk/examples/OrbbecSDK.lib +0 -0
  7. pyorbbecsdk/examples/README.md +26 -0
  8. pyorbbecsdk/examples/__pycache__/utils.cpython-313.pyc +0 -0
  9. pyorbbecsdk/examples/callback.py +303 -0
  10. pyorbbecsdk/examples/color.py +64 -0
  11. pyorbbecsdk/examples/coordinate_transform.py +184 -0
  12. pyorbbecsdk/examples/depth.py +107 -0
  13. pyorbbecsdk/examples/depth_work_mode.py +50 -0
  14. pyorbbecsdk/examples/device_firmware_update.py +155 -0
  15. pyorbbecsdk/examples/device_optional_depth_presets_update.py +142 -0
  16. pyorbbecsdk/examples/enumerate.py +118 -0
  17. pyorbbecsdk/examples/extensions/depthengine/depthengine.dll +0 -0
  18. pyorbbecsdk/examples/extensions/depthengine/depthengine.lib +0 -0
  19. pyorbbecsdk/examples/extensions/filters/FilterProcessor.dll +0 -0
  20. pyorbbecsdk/examples/extensions/filters/ob_priv_filter.dll +0 -0
  21. pyorbbecsdk/examples/extensions/firmwareupdater/firmwareupdater.dll +0 -0
  22. pyorbbecsdk/examples/extensions/frameprocessor/ob_frame_processor.dll +0 -0
  23. pyorbbecsdk/examples/hdr.py +216 -0
  24. pyorbbecsdk/examples/hot_plug.py +160 -0
  25. pyorbbecsdk/examples/hw_d2c_align.py +135 -0
  26. pyorbbecsdk/examples/imu.py +60 -0
  27. pyorbbecsdk/examples/infrared.py +115 -0
  28. pyorbbecsdk/examples/logger.py +55 -0
  29. pyorbbecsdk/examples/metadata.py +64 -0
  30. pyorbbecsdk/examples/multi_device.py +169 -0
  31. pyorbbecsdk/examples/multi_streams.py +219 -0
  32. pyorbbecsdk/examples/net_device.py +158 -0
  33. pyorbbecsdk/examples/playback.py +277 -0
  34. pyorbbecsdk/examples/point_cloud.py +90 -0
  35. pyorbbecsdk/examples/post_processing.py +119 -0
  36. pyorbbecsdk/examples/preset.py +67 -0
  37. pyorbbecsdk/examples/pyorbbecsdk.cp313-win_amd64.pyd +0 -0
  38. pyorbbecsdk/examples/quick_start.py +90 -0
  39. pyorbbecsdk/examples/recorder.py +236 -0
  40. pyorbbecsdk/examples/requirements.txt +9 -0
  41. pyorbbecsdk/examples/save_image_to_disk.py +106 -0
  42. pyorbbecsdk/examples/sync_align.py +109 -0
  43. pyorbbecsdk/examples/two_devices_sync.py +233 -0
  44. pyorbbecsdk/examples/utils.py +127 -0
  45. pyorbbec-1.0.1.6.dist-info/RECORD +0 -17
  46. {pyorbbec-1.0.1.6.dist-info → pyorbbec-1.0.1.8.dist-info}/WHEEL +0 -0
  47. {pyorbbec-1.0.1.6.dist-info → pyorbbec-1.0.1.8.dist-info}/licenses/LICENSE +0 -0
  48. {pyorbbec-1.0.1.6.dist-info → pyorbbec-1.0.1.8.dist-info}/licenses/NOTICE +0 -0
  49. {pyorbbec-1.0.1.6.dist-info → pyorbbec-1.0.1.8.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,2332 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Config>
3
+ <!-- Configuration file standard version. If you are not an SDK developer, please do not modify
4
+ it, otherwise the configuration function may fail. -->
5
+ <ConfigStandardVersion>1.1</ConfigStandardVersion>
6
+
7
+ <Log>
8
+ <!-- Log output level, int type, optional values: 0-DEBUG, 1-INFO, 2-WARN, 3-ERROR, 4-FATAL,
9
+ 5-OFF -->
10
+ <!-- File log output level -->
11
+ <FileLogLevel>0</FileLogLevel>
12
+ <!-- Console log output level -->
13
+ <ConsoleLogLevel>3</ConsoleLogLevel>
14
+ <!-- Default log output file path, string type. If this item is not configured, the default
15
+ path will be used: Win/Linux: "./Log"; Android: "/sdcard/orbbec/Log" -->
16
+ <!-- <OutputDir>./log</OutputDir> -->
17
+ <!-- Default log output file size, int type, unit: MB -->
18
+ <MaxFileSize>100</MaxFileSize>
19
+ <!-- Default log output file number (circular overwrite), int type -->
20
+ <MaxFileNum>3</MaxFileNum>
21
+ <!-- Log asynchronous output, changing to asynchronous output can reduce the blocking time
22
+ of printing logs, but some logs may be lost when the program exits abnormally; true-enable,
23
+ false-disable (default) -->
24
+ <Async>false</Async>
25
+ </Log>
26
+
27
+ <Memory>
28
+ <!-- Enable memory pool to reuse frame memory, avoid frequent memory allocation and release.
29
+ true-enable, false-disable) -->
30
+ <EnableMemoryPool>true</EnableMemoryPool>
31
+ <!-- Maximum memory size of all data frames, int type, unit: MB, minimum 100MB -->
32
+ <MaxFrameBufferSize>2048</MaxFrameBufferSize>
33
+ <!-- Frame buffer queue size in pipeline -->
34
+ <PipelineFrameQueueSize>10</PipelineFrameQueueSize>
35
+ <!-- Frame buffer queue size in internal processing unit -->
36
+ <FrameProcessingBlockQueueSize>10</FrameProcessingBlockQueueSize>
37
+ </Memory>
38
+
39
+ <!-- Default working configuration of pipeline -->
40
+ <Pipeline>
41
+ <Stream>
42
+ <Depth>
43
+ <!-- Use default stream profile, bool type, true: use default stream profile,
44
+ false:use specified stream profile in the configuration file -->
45
+ <UseDefaultStreamProfile>true</UseDefaultStreamProfile>
46
+ </Depth>
47
+ <Color>
48
+ <UseDefaultStreamProfile>true</UseDefaultStreamProfile>
49
+ <![CDATA[
50
+ <!-- Set UseDefaultStreamProfile to false to use the specified stream profile in the configuration file -->
51
+ <UseDefaultStreamProfile>false</UseDefaultStreamProfile>
52
+ <!-- Width of the resolution, int type -->
53
+ <Width>1920</Width>
54
+ <!-- Height of the resolution, int type -->
55
+ <Height>1080</Height>
56
+ <!-- Frame rate, int type -->
57
+ <FPS>30</FPS>
58
+ <!-- frame format -->
59
+ <Format>MJPG</Format>
60
+ ]]>
61
+ </Color>
62
+ <!-- If you need to open other streams, you can refer to the above configuration to add -->
63
+ </Stream>
64
+ </Pipeline>
65
+
66
+ <!-- Default configuration of data streams for different types of devices -->
67
+ <Device>
68
+ <!-- Whether to enumerate network devices, bool type, true-enable, false-disable (default) -->
69
+ <EnumerateNetDevice>true</EnumerateNetDevice>
70
+
71
+ <!-- Global UVC Backend select on Linux; optional values: Auto, V4L2, LibUVC; The default
72
+ setting is "Auto," which will automatically select the appropriate option based on the
73
+ system's capabilities and the device's speciality. -->
74
+ <LinuxUVCBackend>Auto</LinuxUVCBackend>
75
+
76
+ <FemtoMega>
77
+ <!-- For Femto-Mega devices, it must be set to V4L2, LibUVC is not supported -->
78
+ <LinuxUVCDefaultBackend>V4L2</LinuxUVCDefaultBackend>
79
+
80
+ <Misc>
81
+ <GlobalTimestampFitterEnable>false</GlobalTimestampFitterEnable>
82
+ <!-- Global timestamp fitter refresh interval, unit: milliseconds, default value: 1000,
83
+ minimum value: 100, it is recommended not to be greater than 1000 -->
84
+ <GlobalTimestampFitterInterval>1000</GlobalTimestampFitterInterval>
85
+ <!-- Global timestamp fitter queue size, default value: 100, minimum value: 20 -->
86
+ <GlobalTimestampFitterQueueSize>100</GlobalTimestampFitterQueueSize>
87
+ </Misc>
88
+
89
+ <Depth>
90
+ <!-- The width of the default resolution, int type -->
91
+ <Width>640</Width>
92
+ <!-- The height of the default resolution, int type -->
93
+ <Height>576</Height>
94
+ <!-- Default frame rate, int type -->
95
+ <FPS>30</FPS>
96
+ <!-- Default frame format -->
97
+ <Format>Y16</Format>
98
+ </Depth>
99
+
100
+ <Color>
101
+ <!-- The width of the default resolution, int type -->
102
+ <Width>1920</Width>
103
+ <!-- The height of the default resolution, int type -->
104
+ <Height>1080</Height>
105
+ <!-- Default frame rate, int type -->
106
+ <FPS>30</FPS>
107
+ <!-- Default frame format -->
108
+ <Format>MJPG</Format>
109
+ </Color>
110
+
111
+ <IR>
112
+ <!-- The width of the default resolution, int type -->
113
+ <Width>640</Width>
114
+ <!-- The height of the default resolution, int type -->
115
+ <Height>576</Height>
116
+ <!-- Default frame rate, int type -->
117
+ <FPS>30</FPS>
118
+ <!-- Default frame format -->
119
+ <Format>Y16</Format>
120
+ </IR>
121
+ </FemtoMega>
122
+
123
+ <FemtoMegai>
124
+ <Misc>
125
+ <GlobalTimestampFitterEnable>false</GlobalTimestampFitterEnable>
126
+ <!-- Global timestamp fitter refresh interval, unit: milliseconds, default value: 1000,
127
+ minimum value: 100, it is recommended not to be greater than 1000 -->
128
+ <GlobalTimestampFitterInterval>1000</GlobalTimestampFitterInterval>
129
+ <!-- Global timestamp fitter queue size, default value: 100, minimum value: 20 -->
130
+ <GlobalTimestampFitterQueueSize>100</GlobalTimestampFitterQueueSize>
131
+ </Misc>
132
+
133
+ <Depth>
134
+ <!-- The width of the default resolution, int type -->
135
+ <Width>640</Width>
136
+ <!-- The height of the default resolution, int type -->
137
+ <Height>576</Height>
138
+ <!-- Default frame rate, int type -->
139
+ <FPS>30</FPS>
140
+ <!-- Default frame format -->
141
+ <Format>Y16</Format>
142
+ </Depth>
143
+
144
+ <Color>
145
+ <!-- The width of the default resolution, int type -->
146
+ <Width>1920</Width>
147
+ <!-- The height of the default resolution, int type -->
148
+ <Height>1080</Height>
149
+ <!-- Default frame rate, int type -->
150
+ <FPS>30</FPS>
151
+ <!-- Default frame format -->
152
+ <Format>MJPG</Format>
153
+ </Color>
154
+
155
+ <IR>
156
+ <!-- The width of the default resolution, int type -->
157
+ <Width>640</Width>
158
+ <!-- The height of the default resolution, int type -->
159
+ <Height>576</Height>
160
+ <!-- Default frame rate, int type -->
161
+ <FPS>30</FPS>
162
+ <!-- Default frame format -->
163
+ <Format>Y16</Format>
164
+ </IR>
165
+ </FemtoMegai>
166
+
167
+ <FemtoBolt>
168
+ <!-- The default Linux UVC backend. If the LinuxUVCBackend is set to "Auto," this item
169
+ will determine the device's speciality. Optional values: V4L2, LibUVC -->
170
+ <LinuxUVCDefaultBackend>LibUVC</LinuxUVCDefaultBackend>
171
+
172
+ <Misc>
173
+ <GlobalTimestampFitterEnable>false</GlobalTimestampFitterEnable>
174
+ <!-- Global timestamp fitter refresh interval, unit: milliseconds, default value: 1000,
175
+ minimum value: 100, it is recommended not to be greater than 1000 -->
176
+ <GlobalTimestampFitterInterval>1000</GlobalTimestampFitterInterval>
177
+ <!-- Global timestamp fitter queue size, default value: 100, minimum value: 20 -->
178
+ <GlobalTimestampFitterQueueSize>100</GlobalTimestampFitterQueueSize>
179
+ </Misc>
180
+
181
+ <Depth>
182
+ <!-- The width of the default resolution, int type -->
183
+ <Width>640</Width>
184
+ <!-- The height of the default resolution, int type -->
185
+ <Height>576</Height>
186
+ <!-- Default frame rate, int type -->
187
+ <FPS>30</FPS>
188
+ <!-- Default frame format -->
189
+ <Format>Y16</Format>
190
+ </Depth>
191
+
192
+ <Color>
193
+ <!-- The width of the default resolution, int type -->
194
+ <Width>1920</Width>
195
+ <!-- The height of the default resolution, int type -->
196
+ <Height>1080</Height>
197
+ <!-- Default frame rate, int type -->
198
+ <FPS>30</FPS>
199
+ <!-- Default frame format -->
200
+ <Format>MJPG</Format>
201
+ </Color>
202
+
203
+ <IR>
204
+ <!-- The width of the default resolution, int type -->
205
+ <Width>640</Width>
206
+ <!-- The height of the default resolution, int type -->
207
+ <Height>576</Height>
208
+ <!-- Default frame rate, int type -->
209
+ <FPS>30</FPS>
210
+ <!-- Default frame format -->
211
+ <Format>Y16</Format>
212
+ </IR>
213
+ </FemtoBolt>
214
+
215
+ <!-- Gemini2 config -->
216
+ <Gemini2>
217
+ <!-- The default Linux UVC backend. If the LinuxUVCBackend is set to "Auto," this item
218
+ will determine the device's speciality. Optional values: V4L2, LibUVC -->
219
+ <LinuxUVCDefaultBackend>LibUVC</LinuxUVCDefaultBackend>
220
+
221
+ <Misc>
222
+ <GlobalTimestampFitterEnable>false</GlobalTimestampFitterEnable>
223
+ <!-- Global timestamp fitter refresh interval, unit: milliseconds, default value: 1000,
224
+ minimum value: 100, it is recommended not to be greater than 1000 -->
225
+ <GlobalTimestampFitterInterval>1000</GlobalTimestampFitterInterval>
226
+ <!-- Global timestamp fitter queue size, default value: 100, minimum value: 20 -->
227
+ <GlobalTimestampFitterQueueSize>100</GlobalTimestampFitterQueueSize>
228
+ </Misc>
229
+
230
+ <!-- Whether to enable heartbeat by default -->
231
+ <DefaultHeartBeat>0</DefaultHeartBeat>
232
+ <Depth>
233
+ <!-- The resolution width is enabled by default, int type -->
234
+ <Width>1280</Width>
235
+ <!-- High resolution is enabled by default, int type -->
236
+ <Height>800</Height>
237
+ <!-- The frame rate of the resolution enabled by default, int type -->
238
+ <FPS>30</FPS>
239
+ <Format>RLE</Format>
240
+ </Depth>
241
+ <Color>
242
+ <!-- The resolution width is enabled by default, int type -->
243
+ <Width>1280</Width>
244
+ <!-- High resolution is enabled by default, int type -->
245
+ <Height>720</Height>
246
+ <!-- The frame rate of the resolution enabled by default, int type -->
247
+ <FPS>30</FPS>
248
+ <Format>MJPG</Format>
249
+ </Color>
250
+ <IR>
251
+ <!-- The resolution width is enabled by default, int type -->
252
+ <Width>1280</Width>
253
+ <!-- High resolution is enabled by default, int type -->
254
+ <Height>800</Height>
255
+ <!-- The frame rate of the resolution enabled by default, int type -->
256
+ <FPS>30</FPS>
257
+ <Format>Y8</Format>
258
+ </IR>
259
+ <LeftIR>
260
+ <!-- The resolution width is enabled by default, int type -->
261
+ <Width>1280</Width>
262
+ <!-- High resolution is enabled by default, int type -->
263
+ <Height>800</Height>
264
+ <!-- The frame rate of the resolution enabled by default, int type -->
265
+ <FPS>30</FPS>
266
+ <Format>Y8</Format>
267
+ </LeftIR>
268
+ <RightIR>
269
+ <!-- The resolution width is enabled by default, int type -->
270
+ <Width>1280</Width>
271
+ <!-- High resolution is enabled by default, int type -->
272
+ <Height>800</Height>
273
+ <!-- The frame rate of the resolution enabled by default, int type -->
274
+ <FPS>30</FPS>
275
+ <Format>Y8</Format>
276
+ </RightIR>
277
+ <!-- Configurations in different camera depth modes -->
278
+ <!-- Deep working mode: Unbinned Dense Default -->
279
+ <UnbinnedDenseDefault>
280
+ <!-- You can configure the default resolution corresponding to the sensor in the
281
+ current mode here, if not configured, then use the Device node to correspond to the
282
+ default resolution of the sensor -->
283
+ </UnbinnedDenseDefault>
284
+ <!-- Deep working mode: Unbinned Sparse Default -->
285
+ <UnbinnedSparseDefault>
286
+ <!-- You can configure the default resolution corresponding to the sensor in the
287
+ current mode here, if not configured, then use the Device node to correspond to the
288
+ default resolution of the sensor -->
289
+ </UnbinnedSparseDefault>
290
+ <!-- Deep working mode: Binned Sparse Default -->
291
+ <BinnedSparseDefault>
292
+ <!-- You can configure the default resolution corresponding to the sensor in the
293
+ current mode here, if not configured, then use the Device node to correspond to the
294
+ default resolution of the sensor -->
295
+ <Depth>
296
+ <!-- The resolution width is enabled by default, int type -->
297
+ <Width>640</Width>
298
+ <!-- High resolution is enabled by default, int type -->
299
+ <Height>400</Height>
300
+ <!-- The frame rate of the resolution enabled by default, int type -->
301
+ <FPS>30</FPS>
302
+ <Format>RLE</Format>
303
+ </Depth>
304
+ <IR>
305
+ <!-- The resolution width is enabled by default, int type -->
306
+ <Width>640</Width>
307
+ <!-- High resolution is enabled by default, int type -->
308
+ <Height>400</Height>
309
+ <!-- The frame rate of the resolution enabled by default, int type -->
310
+ <FPS>30</FPS>
311
+ <Format>Y8</Format>
312
+ </IR>
313
+ </BinnedSparseDefault>
314
+ <!-- Deep working mode: Obstacle Avoidance -->
315
+ <ObstacleAvoidance>
316
+ <Depth>
317
+ <!-- The resolution width is enabled by default, int type -->
318
+ <Width>640</Width>
319
+ <!-- High resolution is enabled by default, int type -->
320
+ <Height>400</Height>
321
+ <!-- The frame rate of the resolution enabled by default, int type -->
322
+ <FPS>15</FPS>
323
+ <Format>RLE</Format>
324
+ </Depth>
325
+ </ObstacleAvoidance>
326
+ <FactoryCalibration>
327
+ <Color>
328
+ <!-- The resolution width is enabled by default, int type -->
329
+ <Width>1920</Width>
330
+ <!-- High resolution is enabled by default, int type -->
331
+ <Height>1080</Height>
332
+ <!-- The frame rate of the resolution enabled by default, int type -->
333
+ <FPS>30</FPS>
334
+ <Format>MJPG</Format>
335
+ </Color>
336
+ <LeftIR>
337
+ <!-- The resolution width is enabled by default, int type -->
338
+ <Width>1280</Width>
339
+ <!-- High resolution is enabled by default, int type -->
340
+ <Height>800</Height>
341
+ <!-- The frame rate of the resolution enabled by default, int type -->
342
+ <FPS>30</FPS>
343
+ <Format>Y10</Format>
344
+ </LeftIR>
345
+ <RightIR>
346
+ <!-- The resolution width is enabled by default, int type -->
347
+ <Width>1280</Width>
348
+ <!-- High resolution is enabled by default, int type -->
349
+ <Height>800</Height>
350
+ <!-- The frame rate of the resolution enabled by default, int type -->
351
+ <FPS>30</FPS>
352
+ <Format>Y10</Format>
353
+ </RightIR>
354
+
355
+ </FactoryCalibration>
356
+ <In-sceneCalibration>
357
+ <Color>
358
+ <!-- The resolution width is enabled by default, int type -->
359
+ <Width>1920</Width>
360
+ <!-- High resolution is enabled by default, int type -->
361
+ <Height>1080</Height>
362
+ <!-- The frame rate of the resolution enabled by default, int type -->
363
+ <FPS>30</FPS>
364
+ <Format>MJPG</Format>
365
+ </Color>
366
+ <LeftIR>
367
+ <!-- The resolution width is enabled by default, int type -->
368
+ <Width>1280</Width>
369
+ <!-- High resolution is enabled by default, int type -->
370
+ <Height>800</Height>
371
+ <!-- The frame rate of the resolution enabled by default, int type -->
372
+ <FPS>30</FPS>
373
+ <Format>Y8</Format>
374
+ </LeftIR>
375
+ <RightIR>
376
+ <!-- The resolution width is enabled by default, int type -->
377
+ <Width>1280</Width>
378
+ <!-- High resolution is enabled by default, int type -->
379
+ <Height>800</Height>
380
+ <!-- The frame rate of the resolution enabled by default, int type -->
381
+ <FPS>30</FPS>
382
+ <Format>Y8</Format>
383
+ </RightIR>
384
+ </In-sceneCalibration>
385
+ </Gemini2>
386
+
387
+ <!-- Gemini2L config -->
388
+ <Gemini2L>
389
+ <!-- The default Linux UVC backend. If the LinuxUVCBackend is set to "Auto," this item
390
+ will determine the device's speciality. Optional values: V4L2, LibUVC -->
391
+ <LinuxUVCDefaultBackend>LibUVC</LinuxUVCDefaultBackend>
392
+
393
+ <Misc>
394
+ <GlobalTimestampFitterEnable>false</GlobalTimestampFitterEnable>
395
+ <!-- Global timestamp fitter refresh interval, unit: milliseconds, default value: 1000,
396
+ minimum value: 100, it is recommended not to be greater than 1000 -->
397
+ <GlobalTimestampFitterInterval>1000</GlobalTimestampFitterInterval>
398
+ <!-- Global timestamp fitter queue size, default value: 100, minimum value: 20 -->
399
+ <GlobalTimestampFitterQueueSize>100</GlobalTimestampFitterQueueSize>
400
+ </Misc>
401
+
402
+ <!-- Whether to enable heartbeat by default -->
403
+ <DefaulHeartBeat>0</DefaulHeartBeat>
404
+
405
+ <Depth>
406
+ <!-- The resolution width is enabled by default, int type -->
407
+ <Width>1280</Width>
408
+ <!-- High resolution is enabled by default, int type -->
409
+ <Height>800</Height>
410
+ <!-- The frame rate of the resolution enabled by default, int type -->
411
+ <FPS>30</FPS>
412
+ <Format>RLE</Format>
413
+ </Depth>
414
+ <Color>
415
+ <!-- The resolution width is enabled by default, int type -->
416
+ <Width>1280</Width>
417
+ <!-- High resolution is enabled by default, int type -->
418
+ <Height>720</Height>
419
+ <!-- The frame rate of the resolution enabled by default, int type -->
420
+ <FPS>30</FPS>
421
+ <!-- The frame rate of the resolution enabled by default, int type -->
422
+ <Format>MJPG</Format>
423
+ </Color>
424
+ <IR>
425
+ <!-- The resolution width is enabled by default, int type -->
426
+ <Width>1280</Width>
427
+ <!-- High resolution is enabled by default, int type -->
428
+ <Height>800</Height>
429
+ <!-- The frame rate of the resolution enabled by default, int type -->
430
+ <FPS>30</FPS>
431
+ <!-- The frame rate of the resolution enabled by default, int type -->
432
+ <Format>Y8</Format>
433
+ </IR>
434
+ <LeftIR>
435
+ <!-- The resolution width is enabled by default, int type -->
436
+ <Width>1280</Width>
437
+ <!-- High resolution is enabled by default, int type -->
438
+ <Height>800</Height>
439
+ <!-- The frame rate of the resolution enabled by default, int type -->
440
+ <FPS>30</FPS>
441
+ <Format>Y8</Format>
442
+ </LeftIR>
443
+ <RightIR>
444
+ <!-- The resolution width is enabled by default, int type -->
445
+ <Width>1280</Width>
446
+ <!-- High resolution is enabled by default, int type -->
447
+ <Height>800</Height>
448
+ <!-- The frame rate of the resolution enabled by default, int type -->
449
+ <FPS>30</FPS>
450
+ <Format>Y8</Format>
451
+ </RightIR>
452
+
453
+ <!-- Configurations in different camera depth modes -->
454
+ <BinnedSparseDefault>
455
+ <Depth>
456
+ <!-- The resolution width is enabled by default, int type -->
457
+ <Width>640</Width>
458
+ <!-- High resolution is enabled by default, int type -->
459
+ <Height>400</Height>
460
+ <!-- The frame rate of the resolution enabled by default, int type -->
461
+ <FPS>30</FPS>
462
+ <Format>RLE</Format>
463
+ </Depth>
464
+ <IR>
465
+ <!-- The resolution width is enabled by default, int type -->
466
+ <Width>640</Width>
467
+ <!-- High resolution is enabled by default, int type -->
468
+ <Height>400</Height>
469
+ <!-- The frame rate of the resolution enabled by default, int type -->
470
+ <FPS>30</FPS>
471
+ <Format>Y8</Format>
472
+ </IR>
473
+ </BinnedSparseDefault>
474
+ <FactoryCalibration>
475
+ <Color>
476
+ <!-- The resolution width is enabled by default, int type -->
477
+ <Width>1920</Width>
478
+ <!-- High resolution is enabled by default, int type -->
479
+ <Height>1080</Height>
480
+ <!-- The frame rate of the resolution enabled by default, int type -->
481
+ <FPS>30</FPS>
482
+ <Format>MJPG</Format>
483
+ </Color>
484
+ <LeftIR>
485
+ <!-- The resolution width is enabled by default, int type -->
486
+ <Width>1280</Width>
487
+ <!-- High resolution is enabled by default, int type -->
488
+ <Height>800</Height>
489
+ <!-- The frame rate of the resolution enabled by default, int type -->
490
+ <FPS>30</FPS>
491
+ <Format>Y10</Format>
492
+ </LeftIR>
493
+ <RightIR>
494
+ <!-- The resolution width is enabled by default, int type -->
495
+ <Width>1280</Width>
496
+ <!-- High resolution is enabled by default, int type -->
497
+ <Height>800</Height>
498
+ <!-- The frame rate of the resolution enabled by default, int type -->
499
+ <FPS>30</FPS>
500
+ <Format>Y10</Format>
501
+ </RightIR>
502
+
503
+ </FactoryCalibration>
504
+ <In-sceneCalibration>
505
+ <Color>
506
+ <!-- The resolution width is enabled by default, int type -->
507
+ <Width>1920</Width>
508
+ <!-- High resolution is enabled by default, int type -->
509
+ <Height>1080</Height>
510
+ <!-- The frame rate of the resolution enabled by default, int type -->
511
+ <FPS>30</FPS>
512
+ <Format>MJPG</Format>
513
+ </Color>
514
+ <LeftIR>
515
+ <!-- The resolution width is enabled by default, int type -->
516
+ <Width>1280</Width>
517
+ <!-- High resolution is enabled by default, int type -->
518
+ <Height>800</Height>
519
+ <!-- The frame rate of the resolution enabled by default, int type -->
520
+ <FPS>30</FPS>
521
+ <Format>Y8</Format>
522
+ </LeftIR>
523
+ <RightIR>
524
+ <!-- The resolution width is enabled by default, int type -->
525
+ <Width>1280</Width>
526
+ <!-- High resolution is enabled by default, int type -->
527
+ <Height>800</Height>
528
+ <!-- The frame rate of the resolution enabled by default, int type -->
529
+ <FPS>30</FPS>
530
+ <Format>Y8</Format>
531
+ </RightIR>
532
+ </In-sceneCalibration>
533
+ </Gemini2L>
534
+
535
+ <!-- Astra2 config -->
536
+ <Astra2>
537
+ <!-- The default Linux UVC backend. If the LinuxUVCBackend is set to "Auto," this item
538
+ will determine the device's speciality. Optional values: V4L2, LibUVC -->
539
+ <LinuxUVCDefaultBackend>LibUVC</LinuxUVCDefaultBackend>
540
+
541
+ <Misc>
542
+ <GlobalTimestampFitterEnable>false</GlobalTimestampFitterEnable>
543
+ <!-- Global timestamp fitter refresh interval, unit: milliseconds, default value: 1000,
544
+ minimum value: 100, it is recommended not to be greater than 1000 -->
545
+ <GlobalTimestampFitterInterval>1000</GlobalTimestampFitterInterval>
546
+ <!-- Global timestamp fitter queue size, default value: 100, minimum value: 20 -->
547
+ <GlobalTimestampFitterQueueSize>100</GlobalTimestampFitterQueueSize>
548
+ </Misc>
549
+
550
+ <!-- Whether to enable heartbeat by default -->
551
+ <DefaulHeartBeat>0</DefaulHeartBeat>
552
+
553
+ <!-- TODO lumiaozi It is cumbersome to consider the recommended configuration in
554
+ different camera depth modes -->
555
+ <!-- TODO lumiaozi have to consider the uncorresponding resolutions in different camera
556
+ depth modes -->
557
+ <Depth>
558
+ <!-- The resolution width is enabled by default, int type -->
559
+ <Width>800</Width>
560
+ <!-- High resolution is enabled by default, int type -->
561
+ <Height>600</Height>
562
+ <!-- The frame rate of the resolution enabled by default, int type -->
563
+ <FPS>30</FPS>
564
+ <Format>RLE</Format>
565
+ </Depth>
566
+ <Color>
567
+ <!-- The resolution width is enabled by default, int type -->
568
+ <Width>1280</Width>
569
+ <!-- High resolution is enabled by default, int type -->
570
+ <Height>720</Height>
571
+ <!-- The frame rate of the resolution enabled by default, int type -->
572
+ <FPS>30</FPS>
573
+ <Format>MJPG</Format>
574
+ </Color>
575
+ <IR>
576
+ <!-- The resolution width is enabled by default, int type -->
577
+ <Width>800</Width>
578
+ <!-- High resolution is enabled by default, int type -->
579
+ <Height>600</Height>
580
+ <!-- The frame rate of the resolution enabled by default, int type -->
581
+ <FPS>30</FPS>
582
+ <Format>Y8</Format>
583
+ </IR>
584
+ <!-- Configurations in different camera depth modes -->
585
+ <HighResolution>
586
+ <Depth>
587
+ <!-- The resolution width is enabled by default, int type -->
588
+ <Width>1600</Width>
589
+ <!-- High resolution is enabled by default, int type -->
590
+ <Height>1200</Height>
591
+ <!-- The frame rate of the resolution enabled by default, int type -->
592
+ <FPS>30</FPS>
593
+ <Format>RLE</Format>
594
+ </Depth>
595
+ <Color>
596
+ <!-- The resolution width is enabled by default, int type -->
597
+ <Width>1280</Width>
598
+ <!-- High resolution is enabled by default, int type -->
599
+ <Height>720</Height>
600
+ <!-- The frame rate of the resolution enabled by default, int type -->
601
+ <FPS>30</FPS>
602
+ <Format>MJPG</Format>
603
+ </Color>
604
+ <IR>
605
+ <!-- The resolution width is enabled by default, int type -->
606
+ <Width>800</Width>
607
+ <!-- High resolution is enabled by default, int type -->
608
+ <Height>600</Height>
609
+ <!-- The frame rate of the resolution enabled by default, int type -->
610
+ <FPS>30</FPS>
611
+ <Format>Y8</Format>
612
+ </IR>
613
+ </HighResolution>
614
+ <ClassicResolution>
615
+ <Depth>
616
+ <!-- The resolution width is enabled by default, int type -->
617
+ <Width>640</Width>
618
+ <!-- High resolution is enabled by default, int type -->
619
+ <Height>480</Height>
620
+ <!-- The frame rate of the resolution enabled by default, int type -->
621
+ <FPS>30</FPS>
622
+ <Format>RLE</Format>
623
+ </Depth>
624
+ <Color>
625
+ <!-- The resolution width is enabled by default, int type -->
626
+ <Width>1280</Width>
627
+ <!-- High resolution is enabled by default, int type -->
628
+ <Height>720</Height>
629
+ <!-- The frame rate of the resolution enabled by default, int type -->
630
+ <FPS>30</FPS>
631
+ <Format>MJPG</Format>
632
+ </Color>
633
+ <IR>
634
+ <!-- The resolution width is enabled by default, int type -->
635
+ <Width>640</Width>
636
+ <!-- High resolution is enabled by default, int type -->
637
+ <Height>480</Height>
638
+ <!-- The frame rate of the resolution enabled by default, int type -->
639
+ <FPS>30</FPS>
640
+ <Format>Y8</Format>
641
+ </IR>
642
+ </ClassicResolution>
643
+ </Astra2>
644
+
645
+ <!-- Gemini2XL config -->
646
+ <Gemini2XL>
647
+ <!-- The default Linux UVC backend. If the LinuxUVCBackend is set to "Auto," this item
648
+ will determine the device's speciality. Optional values: V4L2, LibUVC -->
649
+ <LinuxUVCDefaultBackend>LibUVC</LinuxUVCDefaultBackend>
650
+
651
+ <Misc>
652
+ <GlobalTimestampFitterEnable>false</GlobalTimestampFitterEnable>
653
+ <!-- Global timestamp fitter refresh interval, unit: milliseconds, default value: 1000,
654
+ minimum value: 100, it is recommended not to be greater than 1000 -->
655
+ <GlobalTimestampFitterInterval>1000</GlobalTimestampFitterInterval>
656
+ <!-- Global timestamp fitter queue size, default value: 100, minimum value: 20 -->
657
+ <GlobalTimestampFitterQueueSize>100</GlobalTimestampFitterQueueSize>
658
+ </Misc>
659
+
660
+ <!-- Whether to enable heartbeat by default -->
661
+ <DefaulHeartBeat>0</DefaulHeartBeat>
662
+
663
+ <Depth>
664
+ <!-- The resolution width is enabled by default, int type -->
665
+ <Width>1280</Width>
666
+ <!-- High resolution is enabled by default, int type -->
667
+ <Height>800</Height>
668
+ <!-- The frame rate of the resolution enabled by default, int type -->
669
+ <FPS>10</FPS>
670
+ <Format>RVL</Format>
671
+ </Depth>
672
+ <Color>
673
+ <!-- The resolution width is enabled by default, int type -->
674
+ <Width>1280</Width>
675
+ <!-- High resolution is enabled by default, int type -->
676
+ <Height>800</Height>
677
+ <!-- The frame rate of the resolution enabled by default, int type -->
678
+ <FPS>10</FPS>
679
+ <Format>MJPG</Format>
680
+ </Color>
681
+ <LeftIR>
682
+ <!-- The resolution width is enabled by default, int type -->
683
+ <Width>1280</Width>
684
+ <!-- High resolution is enabled by default, int type -->
685
+ <Height>800</Height>
686
+ <!-- The frame rate of the resolution enabled by default, int type -->
687
+ <FPS>10</FPS>
688
+ <Format>Y8</Format>
689
+ </LeftIR>
690
+ <RightIR>
691
+ <!-- The resolution width is enabled by default, int type -->
692
+ <Width>1280</Width>
693
+ <!-- High resolution is enabled by default, int type -->
694
+ <Height>800</Height>
695
+ <!-- The frame rate of the resolution enabled by default, int type -->
696
+ <FPS>10</FPS>
697
+ <Format>Y8</Format>
698
+ </RightIR>
699
+ <Accel>
700
+ </Accel>
701
+ <Gyro>
702
+ </Gyro>
703
+
704
+ <!-- Configurations in different camera depth modes -->
705
+ <BinnedSparseDefault>
706
+ <Color>
707
+ <!-- The resolution width is enabled by default, int type -->
708
+ <Width>1280</Width>
709
+ <!-- High resolution is enabled by default, int type -->
710
+ <Height>800</Height>
711
+ <!-- The frame rate of the resolution enabled by default, int type -->
712
+ <FPS>20</FPS>
713
+ <Format>MJPG</Format>
714
+ </Color>
715
+ <Depth>
716
+ <!-- The resolution width is enabled by default, int type -->
717
+ <Width>640</Width>
718
+ <!-- High resolution is enabled by default, int type -->
719
+ <Height>400</Height>
720
+ <!-- The frame rate of the resolution enabled by default, int type -->
721
+ <FPS>20</FPS>
722
+ <Format>RVL</Format>
723
+ </Depth>
724
+ <LeftIR>
725
+ <!-- The resolution width is enabled by default, int type -->
726
+ <Width>640</Width>
727
+ <!-- High resolution is enabled by default, int type -->
728
+ <Height>400</Height>
729
+ <!-- The frame rate of the resolution enabled by default, int type -->
730
+ <FPS>20</FPS>
731
+ <Format>Y8</Format>
732
+ </LeftIR>
733
+ <RightIR>
734
+ <!-- The resolution width is enabled by default, int type -->
735
+ <Width>640</Width>
736
+ <!-- High resolution is enabled by default, int type -->
737
+ <Height>400</Height>
738
+ <!-- The frame rate of the resolution enabled by default, int type -->
739
+ <FPS>20</FPS>
740
+ <Format>Y8</Format>
741
+ </RightIR>
742
+ </BinnedSparseDefault>
743
+ <FactoryCalibration>
744
+ <Color>
745
+ <!-- The resolution width is enabled by default, int type -->
746
+ <Width>1280</Width>
747
+ <!-- High resolution is enabled by default, int type -->
748
+ <Height>800</Height>
749
+ <!-- The frame rate of the resolution enabled by default, int type -->
750
+ <FPS>10</FPS>
751
+ <Format>MJPG</Format>
752
+ </Color>
753
+ <LeftIR>
754
+ <!-- The resolution width is enabled by default, int type -->
755
+ <Width>1280</Width>
756
+ <!-- High resolution is enabled by default, int type -->
757
+ <Height>800</Height>
758
+ <!-- The frame rate of the resolution enabled by default, int type -->
759
+ <FPS>10</FPS>
760
+ <Format>Y10</Format>
761
+ </LeftIR>
762
+ <RightIR>
763
+ <!-- The resolution width is enabled by default, int type -->
764
+ <Width>1280</Width>
765
+ <!-- High resolution is enabled by default, int type -->
766
+ <Height>800</Height>
767
+ <!-- The frame rate of the resolution enabled by default, int type -->
768
+ <FPS>10</FPS>
769
+ <Format>Y10</Format>
770
+ </RightIR>
771
+ </FactoryCalibration>
772
+ <In-sceneCalibration>
773
+ <Color>
774
+ <!-- The resolution width is enabled by default, int type -->
775
+ <Width>1280</Width>
776
+ <!-- High resolution is enabled by default, int type -->
777
+ <Height>800</Height>
778
+ <!-- The frame rate of the resolution enabled by default, int type -->
779
+ <FPS>10</FPS>
780
+ <Format>MJPG</Format>
781
+ </Color>
782
+ <LeftIR>
783
+ <!-- The resolution width is enabled by default, int type -->
784
+ <Width>1280</Width>
785
+ <!-- High resolution is enabled by default, int type -->
786
+ <Height>800</Height>
787
+ <!-- The frame rate of the resolution enabled by default, int type -->
788
+ <FPS>10</FPS>
789
+ <Format>Y8</Format>
790
+ </LeftIR>
791
+ <RightIR>
792
+ <!-- The resolution width is enabled by default, int type -->
793
+ <Width>1280</Width>
794
+ <!-- High resolution is enabled by default, int type -->
795
+ <Height>800</Height>
796
+ <!-- The frame rate of the resolution enabled by default, int type -->
797
+ <FPS>10</FPS>
798
+ <Format>Y8</Format>
799
+ </RightIR>
800
+ </In-sceneCalibration>
801
+ </Gemini2XL>
802
+
803
+ <!-- Gemini2R config -->
804
+ <Gemini335>
805
+ <!-- Default backend for Linux UVC devices. If the LinuxUVCBackend is set to "Auto,"
806
+ this item will determine the device's speciality. Optional values: V4L2, LibUVC -->
807
+ <LinuxUVCDefaultBackend>LibUVC</LinuxUVCDefaultBackend>
808
+
809
+ <Misc>
810
+ <GlobalTimestampFitterEnable>true</GlobalTimestampFitterEnable>
811
+ <!-- Global timestamp fitter refresh interval, unit: milliseconds, default value: 1000,
812
+ minimum value: 100, it is recommended not to be greater than 1000 -->
813
+ <GlobalTimestampFitterInterval>1000</GlobalTimestampFitterInterval>
814
+ <!-- Global timestamp fitter queue size, default value: 100, minimum value: 20 -->
815
+ <GlobalTimestampFitterQueueSize>100</GlobalTimestampFitterQueueSize>
816
+ </Misc>
817
+
818
+ <DepthPostProcessing>
819
+ <HardwareNoiseRemoveFilter>false</HardwareNoiseRemoveFilter>
820
+ <SoftwareNoiseRemoveFilter>true</SoftwareNoiseRemoveFilter>
821
+ </DepthPostProcessing>
822
+
823
+ <!-- Whether to enable heartbeat by default -->
824
+ <DefaultHeartBeat>0</DefaultHeartBeat>
825
+ <!-- Whether to enable firmware upgrade foolproof by default, only internal version
826
+ supports -->
827
+ <FirmwareUpgradeFoolproof>1</FirmwareUpgradeFoolproof>
828
+
829
+ <!-- Depth Filter Params -->
830
+ <!--
831
+ <DepthFilterDDOConfig>./Gemini2_v1.0.json</DepthFilterDDOConfig>
832
+ -->
833
+ <Depth>
834
+ <!-- The resolution width is enabled by default, int type -->
835
+ <Width>848</Width>
836
+ <!-- High resolution is enabled by default, int type -->
837
+ <Height>480</Height>
838
+ <!-- The frame rate of the resolution enabled by default, int type -->
839
+ <FPS>30</FPS>
840
+ <Format>Y16</Format>
841
+ </Depth>
842
+ <Color>
843
+ <!-- The resolution width is enabled by default, int type -->
844
+ <Width>1280</Width>
845
+ <!-- High resolution is enabled by default, int type -->
846
+ <Height>720</Height>
847
+ <!-- The frame rate of the resolution enabled by default, int type -->
848
+ <FPS>30</FPS>
849
+ <Format>MJPG</Format>
850
+ </Color>
851
+ <IR>
852
+ <!-- The resolution width is enabled by default, int type -->
853
+ <Width>848</Width>
854
+ <!-- High resolution is enabled by default, int type -->
855
+ <Height>480</Height>
856
+ <!-- The frame rate of the resolution enabled by default, int type -->
857
+ <FPS>30</FPS>
858
+ <Format>Y8</Format>
859
+ </IR>
860
+ <LeftIR>
861
+ <!-- The resolution width is enabled by default, int type -->
862
+ <Width>848</Width>
863
+ <!-- High resolution is enabled by default, int type -->
864
+ <Height>480</Height>
865
+ <!-- The frame rate of the resolution enabled by default, int type -->
866
+ <FPS>30</FPS>
867
+ <Format>Y8</Format>
868
+ </LeftIR>
869
+ <RightIR>
870
+ <!-- The resolution width is enabled by default, int type -->
871
+ <Width>848</Width>
872
+ <!-- High resolution is enabled by default, int type -->
873
+ <Height>480</Height>
874
+ <!-- The frame rate of the resolution enabled by default, int type -->
875
+ <FPS>30</FPS>
876
+ <Format>Y8</Format>
877
+ </RightIR>
878
+ </Gemini335>
879
+
880
+ <!-- Gemini2RL config -->
881
+ <Gemini335L>
882
+ <!-- The default Linux UVC backend. If the LinuxUVCBackend is set to "Auto," this item
883
+ will determine the device's speciality. Optional values: V4L2, LibUVC -->
884
+ <LinuxUVCDefaultBackend>LibUVC</LinuxUVCDefaultBackend>
885
+
886
+ <Misc>
887
+ <GlobalTimestampFitterEnable>true</GlobalTimestampFitterEnable>
888
+ <!-- Global timestamp fitter refresh interval, unit: milliseconds, default value: 1000,
889
+ minimum value: 100, it is recommended not to be greater than 1000 -->
890
+ <GlobalTimestampFitterInterval>1000</GlobalTimestampFitterInterval>
891
+ <!-- Global timestamp fitter queue size, default value: 100, minimum value: 20 -->
892
+ <GlobalTimestampFitterQueueSize>100</GlobalTimestampFitterQueueSize>
893
+ </Misc>
894
+
895
+ <DepthPostProcessing>
896
+ <HardwareNoiseRemoveFilter>false</HardwareNoiseRemoveFilter>
897
+ <SoftwareNoiseRemoveFilter>true</SoftwareNoiseRemoveFilter>
898
+ </DepthPostProcessing>
899
+
900
+ <!-- Whether to enable heartbeat by default -->
901
+ <DefaultHeartBeat>0</DefaultHeartBeat>
902
+ <!-- Whether to enable firmware upgrade foolproof by default, only internal version
903
+ supports -->
904
+ <FirmwareUpgradeFoolproof>1</FirmwareUpgradeFoolproof>
905
+
906
+ <!-- Depth Filter Params -->
907
+ <!--
908
+ <DepthFilterDDOConfig>./Gemini2_v1.0.json</DepthFilterDDOConfig>
909
+ -->
910
+ <Depth>
911
+ <!-- The resolution width is enabled by default, int type -->
912
+ <Width>848</Width>
913
+ <!-- High resolution is enabled by default, int type -->
914
+ <Height>480</Height>
915
+ <!-- The frame rate of the resolution enabled by default, int type -->
916
+ <FPS>30</FPS>
917
+ <Format>Y16</Format>
918
+ </Depth>
919
+ <Color>
920
+ <!-- The resolution width is enabled by default, int type -->
921
+ <Width>1280</Width>
922
+ <!-- High resolution is enabled by default, int type -->
923
+ <Height>720</Height>
924
+ <!-- The frame rate of the resolution enabled by default, int type -->
925
+ <FPS>30</FPS>
926
+ <Format>MJPG</Format>
927
+ </Color>
928
+ <IR>
929
+ <!-- The resolution width is enabled by default, int type -->
930
+ <Width>848</Width>
931
+ <!-- High resolution is enabled by default, int type -->
932
+ <Height>480</Height>
933
+ <!-- The frame rate of the resolution enabled by default, int type -->
934
+ <FPS>30</FPS>
935
+ <Format>Y8</Format>
936
+ </IR>
937
+ <LeftIR>
938
+ <!-- The resolution width is enabled by default, int type -->
939
+ <Width>848</Width>
940
+ <!-- High resolution is enabled by default, int type -->
941
+ <Height>480</Height>
942
+ <!-- The frame rate of the resolution enabled by default, int type -->
943
+ <FPS>30</FPS>
944
+ <Format>Y8</Format>
945
+ </LeftIR>
946
+ <RightIR>
947
+ <!-- The resolution width is enabled by default, int type -->
948
+ <Width>848</Width>
949
+ <!-- High resolution is enabled by default, int type -->
950
+ <Height>480</Height>
951
+ <!-- The frame rate of the resolution enabled by default, int type -->
952
+ <FPS>30</FPS>
953
+ <Format>Y8</Format>
954
+ </RightIR>
955
+ </Gemini335L>
956
+ <!-- Gemini 330 config -->
957
+ <Gemini330>
958
+ <!-- Default backend for Linux UVC devices. If the LinuxUVCBackend is set to "Auto,"
959
+ this item will determine the device's speciality. Optional values: V4L2, LibUVC -->
960
+ <LinuxUVCDefaultBackend>LibUVC</LinuxUVCDefaultBackend>
961
+
962
+ <Misc>
963
+ <GlobalTimestampFitterEnable>true</GlobalTimestampFitterEnable>
964
+ <!-- Global timestamp fitter refresh interval, unit: milliseconds, default value: 1000,
965
+ minimum value: 100, it is recommended not to be greater than 1000 -->
966
+ <GlobalTimestampFitterInterval>1000</GlobalTimestampFitterInterval>
967
+ <!-- Global timestamp fitter queue size, default value: 100, minimum value: 20 -->
968
+ <GlobalTimestampFitterQueueSize>100</GlobalTimestampFitterQueueSize>
969
+ </Misc>
970
+
971
+ <DepthPostProcessing>
972
+ <HardwareNoiseRemoveFilter>false</HardwareNoiseRemoveFilter>
973
+ <SoftwareNoiseRemoveFilter>true</SoftwareNoiseRemoveFilter>
974
+ </DepthPostProcessing>
975
+
976
+ <!-- Whether to enable heartbeat by default -->
977
+ <DefaultHeartBeat>0</DefaultHeartBeat>
978
+ <!-- Whether to enable firmware upgrade foolproof by default, only internal version
979
+ supports -->
980
+ <FirmwareUpgradeFoolproof>1</FirmwareUpgradeFoolproof>
981
+
982
+ <!-- Depth Filter Params -->
983
+ <!--
984
+ <DepthFilterDDOConfig>./Gemini2_v1.0.json</DepthFilterDDOConfig>
985
+ -->
986
+ <Depth>
987
+ <!-- Number of retries for open stream failures, 0 means no retries -->
988
+ <StreamFailedRetry>0</StreamFailedRetry>
989
+ <!-- Open flow waits for the timeout period of the first frame of data, after which
990
+ the open flow will fail -->
991
+ <MaxStartStreamDelayMs>5000</MaxStartStreamDelayMs>
992
+ <!-- The number of data stream restarts due to abnormal interruption, 0 means no
993
+ restart -->
994
+ <StreamInterruptedRestart>0</StreamInterruptedRestart>
995
+ <!-- The maximum frame interval time, if this value is exceeded, it will be judged
996
+ that the stream is interrupted -->
997
+ <MaxFrameIntervalMs>2000</MaxFrameIntervalMs>
998
+ <!-- The resolution width is enabled by default, int type -->
999
+ <Width>848</Width>
1000
+ <!-- High resolution is enabled by default, int type -->
1001
+ <Height>480</Height>
1002
+ <!-- The frame rate of the resolution enabled by default, int type -->
1003
+ <FPS>30</FPS>
1004
+ <Format>Y16</Format>
1005
+ </Depth>
1006
+ <Color>
1007
+ <!-- The resolution width is enabled by default, int type -->
1008
+ <Width>1280</Width>
1009
+ <!-- High resolution is enabled by default, int type -->
1010
+ <Height>720</Height>
1011
+ <!-- The frame rate of the resolution enabled by default, int type -->
1012
+ <FPS>30</FPS>
1013
+ <Format>MJPG</Format>
1014
+ </Color>
1015
+ <IR>
1016
+ <!-- The resolution width is enabled by default, int type -->
1017
+ <Width>848</Width>
1018
+ <!-- High resolution is enabled by default, int type -->
1019
+ <Height>480</Height>
1020
+ <!-- The frame rate of the resolution enabled by default, int type -->
1021
+ <FPS>30</FPS>
1022
+ <Format>Y8</Format>
1023
+ </IR>
1024
+ <LeftIR>
1025
+ <!-- The resolution width is enabled by default, int type -->
1026
+ <Width>848</Width>
1027
+ <!-- High resolution is enabled by default, int type -->
1028
+ <Height>480</Height>
1029
+ <!-- The frame rate of the resolution enabled by default, int type -->
1030
+ <FPS>30</FPS>
1031
+ <Format>Y8</Format>
1032
+ </LeftIR>
1033
+ <RightIR>
1034
+ <!-- The resolution width is enabled by default, int type -->
1035
+ <Width>848</Width>
1036
+ <!-- High resolution is enabled by default, int type -->
1037
+ <Height>480</Height>
1038
+ <!-- The frame rate of the resolution enabled by default, int type -->
1039
+ <FPS>30</FPS>
1040
+ <Format>Y8</Format>
1041
+ </RightIR>
1042
+ </Gemini330>
1043
+
1044
+ <!-- Gemini 330L config -->
1045
+ <Gemini330L>
1046
+ <!-- The default Linux UVC backend. If the LinuxUVCBackend is set to "Auto," this item
1047
+ will determine the device's speciality. Optional values: V4L2, LibUVC -->
1048
+ <LinuxUVCDefaultBackend>LibUVC</LinuxUVCDefaultBackend>
1049
+
1050
+ <Misc>
1051
+ <GlobalTimestampFitterEnable>true</GlobalTimestampFitterEnable>
1052
+ <!-- Global timestamp fitter refresh interval, unit: milliseconds, default value: 1000,
1053
+ minimum value: 100, it is recommended not to be greater than 1000 -->
1054
+ <GlobalTimestampFitterInterval>1000</GlobalTimestampFitterInterval>
1055
+ <!-- Global timestamp fitter queue size, default value: 100, minimum value: 20 -->
1056
+ <GlobalTimestampFitterQueueSize>100</GlobalTimestampFitterQueueSize>
1057
+ </Misc>
1058
+
1059
+ <DepthPostProcessing>
1060
+ <HardwareNoiseRemoveFilter>false</HardwareNoiseRemoveFilter>
1061
+ <SoftwareNoiseRemoveFilter>true</SoftwareNoiseRemoveFilter>
1062
+ </DepthPostProcessing>
1063
+
1064
+ <!-- Whether to enable heartbeat by default -->
1065
+ <DefaultHeartBeat>0</DefaultHeartBeat>
1066
+ <!-- Whether to enable firmware upgrade foolproof by default, only internal version
1067
+ supports -->
1068
+ <FirmwareUpgradeFoolproof>1</FirmwareUpgradeFoolproof>
1069
+
1070
+ <!-- Depth Filter Params -->
1071
+ <!--
1072
+ <DepthFilterDDOConfig>./Gemini2_v1.0.json</DepthFilterDDOConfig>
1073
+ -->
1074
+ <Depth>
1075
+ <!-- Number of retries for open stream failures, 0 means no retries -->
1076
+ <StreamFailedRetry>0</StreamFailedRetry>
1077
+ <!-- Open flow waits for the timeout period of the first frame of data, after which
1078
+ the open flow will fail -->
1079
+ <MaxStartStreamDelayMs>5000</MaxStartStreamDelayMs>
1080
+ <!-- The number of data stream restarts due to abnormal interruption, 0 means no
1081
+ restart -->
1082
+ <StreamInterruptedRestart>0</StreamInterruptedRestart>
1083
+ <!-- The maximum frame interval time, if this value is exceeded, it will be judged
1084
+ that the stream is interrupted -->
1085
+ <MaxFrameIntervalMs>2000</MaxFrameIntervalMs>
1086
+ <!-- The resolution width is enabled by default, int type -->
1087
+ <Width>848</Width>
1088
+ <!-- High resolution is enabled by default, int type -->
1089
+ <Height>480</Height>
1090
+ <!-- The frame rate of the resolution enabled by default, int type -->
1091
+ <FPS>30</FPS>
1092
+ <Format>Y16</Format>
1093
+ </Depth>
1094
+ <Color>
1095
+ <!-- The resolution width is enabled by default, int type -->
1096
+ <Width>1280</Width>
1097
+ <!-- High resolution is enabled by default, int type -->
1098
+ <Height>720</Height>
1099
+ <!-- The frame rate of the resolution enabled by default, int type -->
1100
+ <FPS>30</FPS>
1101
+ <Format>MJPG</Format>
1102
+ </Color>
1103
+ <IR>
1104
+ <!-- The resolution width is enabled by default, int type -->
1105
+ <Width>848</Width>
1106
+ <!-- High resolution is enabled by default, int type -->
1107
+ <Height>480</Height>
1108
+ <!-- The frame rate of the resolution enabled by default, int type -->
1109
+ <FPS>30</FPS>
1110
+ <Format>Y8</Format>
1111
+ </IR>
1112
+ <LeftIR>
1113
+ <!-- The resolution width is enabled by default, int type -->
1114
+ <Width>848</Width>
1115
+ <!-- High resolution is enabled by default, int type -->
1116
+ <Height>480</Height>
1117
+ <!-- The frame rate of the resolution enabled by default, int type -->
1118
+ <FPS>30</FPS>
1119
+ <Format>Y8</Format>
1120
+ </LeftIR>
1121
+ <RightIR>
1122
+ <!-- The resolution width is enabled by default, int type -->
1123
+ <Width>848</Width>
1124
+ <!-- High resolution is enabled by default, int type -->
1125
+ <Height>480</Height>
1126
+ <!-- The frame rate of the resolution enabled by default, int type -->
1127
+ <FPS>30</FPS>
1128
+ <Format>Y8</Format>
1129
+ </RightIR>
1130
+ </Gemini330L>
1131
+
1132
+ <!-- Gemini335Lg config -->
1133
+ <Gemini335Lg>
1134
+ <!-- The default Linux UVC backend. If the LinuxUVCBackend is set to "Auto," this item
1135
+ will determine the device's speciality. Optional values: V4L2, LibUVC -->
1136
+ <LinuxUVCDefaultBackend>LibUVC</LinuxUVCDefaultBackend>
1137
+
1138
+ <Misc>
1139
+ <GlobalTimestampFitterEnable>true</GlobalTimestampFitterEnable>
1140
+ <!-- Global timestamp fitter refresh interval, unit: milliseconds, default value: 1000,
1141
+ minimum value: 100, it is recommended not to be greater than 1000 -->
1142
+ <GlobalTimestampFitterInterval>1000</GlobalTimestampFitterInterval>
1143
+ <!-- Global timestamp fitter queue size, default value: 100, minimum value: 20 -->
1144
+ <GlobalTimestampFitterQueueSize>100</GlobalTimestampFitterQueueSize>
1145
+ </Misc>
1146
+
1147
+ <DepthPostProcessing>
1148
+ <HardwareNoiseRemoveFilter>false</HardwareNoiseRemoveFilter>
1149
+ <SoftwareNoiseRemoveFilter>true</SoftwareNoiseRemoveFilter>
1150
+ </DepthPostProcessing>
1151
+
1152
+ <!-- Whether to enable heartbeat by default -->
1153
+ <DefaultHeartBeat>0</DefaultHeartBeat>
1154
+ <!-- Whether to enable firmware upgrade foolproof by default, only internal version
1155
+ supports -->
1156
+ <FirmwareUpgradeFoolproof>1</FirmwareUpgradeFoolproof>
1157
+ <Depth>
1158
+ <!-- The resolution width is enabled by default, int type -->
1159
+ <Width>848</Width>
1160
+ <!-- High resolution is enabled by default, int type -->
1161
+ <Height>480</Height>
1162
+ <!-- The frame rate of the resolution enabled by default, int type -->
1163
+ <FPS>30</FPS>
1164
+ <Format>Y16</Format>
1165
+ </Depth>
1166
+ <Color>
1167
+ <!-- The resolution width is enabled by default, int type -->
1168
+ <Width>1280</Width>
1169
+ <!-- High resolution is enabled by default, int type -->
1170
+ <Height>720</Height>
1171
+ <!-- The frame rate of the resolution enabled by default, int type -->
1172
+ <FPS>30</FPS>
1173
+ <Format>MJPG</Format>
1174
+ </Color>
1175
+ <IR>
1176
+ <!-- The resolution width is enabled by default, int type -->
1177
+ <Width>848</Width>
1178
+ <!-- High resolution is enabled by default, int type -->
1179
+ <Height>480</Height>
1180
+ <!-- The frame rate of the resolution enabled by default, int type -->
1181
+ <FPS>30</FPS>
1182
+ <Format>Y8</Format>
1183
+ </IR>
1184
+ <LeftIR>
1185
+ <!-- The resolution width is enabled by default, int type -->
1186
+ <Width>848</Width>
1187
+ <!-- High resolution is enabled by default, int type -->
1188
+ <Height>480</Height>
1189
+ <!-- The frame rate of the resolution enabled by default, int type -->
1190
+ <FPS>30</FPS>
1191
+ <Format>Y8</Format>
1192
+ </LeftIR>
1193
+ <RightIR>
1194
+ <!-- The resolution width is enabled by default, int type -->
1195
+ <Width>848</Width>
1196
+ <!-- High resolution is enabled by default, int type -->
1197
+ <Height>480</Height>
1198
+ <!-- The frame rate of the resolution enabled by default, int type -->
1199
+ <FPS>30</FPS>
1200
+ <Format>Y8</Format>
1201
+ </RightIR>
1202
+ </Gemini335Lg>
1203
+
1204
+ <!-- Gemini335Le config -->
1205
+ <Gemini335Le>
1206
+ <!-- Whether to enable heartbeat by default -->
1207
+ <DefaultHeartBeat>0</DefaultHeartBeat>
1208
+ <!-- Whether to enable firmware upgrade foolproof by default, only internal version
1209
+ supports -->
1210
+ <FirmwareUpgradeFoolproof>1</FirmwareUpgradeFoolproof>
1211
+
1212
+ <Misc>
1213
+ <GlobalTimestampFitterEnable>true</GlobalTimestampFitterEnable>
1214
+ <!-- Global timestamp fitter refresh interval, unit: milliseconds, default value: 1000,
1215
+ minimum value: 100, it is recommended not to be greater than 1000 -->
1216
+ <GlobalTimestampFitterInterval>1000</GlobalTimestampFitterInterval>
1217
+ <!-- Global timestamp fitter queue size, default value: 100, minimum value: 20 -->
1218
+ <GlobalTimestampFitterQueueSize>100</GlobalTimestampFitterQueueSize>
1219
+ </Misc>
1220
+
1221
+ <DepthPostProcessing>
1222
+ <HardwareNoiseRemoveFilter>false</HardwareNoiseRemoveFilter>
1223
+ <SoftwareNoiseRemoveFilter>true</SoftwareNoiseRemoveFilter>
1224
+ </DepthPostProcessing>
1225
+
1226
+ <!-- Whether to enable heartbeat by default -->
1227
+ <DefaultHeartBeat>0</DefaultHeartBeat>
1228
+ <!-- Whether to enable firmware upgrade foolproof by default, only internal version
1229
+ supports -->
1230
+ <FirmwareUpgradeFoolproof>1</FirmwareUpgradeFoolproof>
1231
+
1232
+ <!-- Depth Filter Params -->
1233
+ <!--
1234
+ <DepthFilterDDOConfig>./Gemini2_v1.0.json</DepthFilterDDOConfig>
1235
+ -->
1236
+ <Depth>
1237
+ <!-- The resolution width is enabled by default, int type -->
1238
+ <Width>640</Width>
1239
+ <!-- High resolution is enabled by default, int type -->
1240
+ <Height>400</Height>
1241
+ <!-- The frame rate of the resolution enabled by default, int type -->
1242
+ <FPS>15</FPS>
1243
+ <Format>Y16</Format>
1244
+ </Depth>
1245
+ <Color>
1246
+ <!-- The resolution width is enabled by default, int type -->
1247
+ <Width>640</Width>
1248
+ <!-- High resolution is enabled by default, int type -->
1249
+ <Height>400</Height>
1250
+ <!-- The frame rate of the resolution enabled by default, int type -->
1251
+ <FPS>15</FPS>
1252
+ <Format>MJPG</Format>
1253
+ </Color>
1254
+ <LeftIR>
1255
+ <!-- The resolution width is enabled by default, int type -->
1256
+ <Width>640</Width>
1257
+ <!-- High resolution is enabled by default, int type -->
1258
+ <Height>400</Height>
1259
+ <!-- The frame rate of the resolution enabled by default, int type -->
1260
+ <FPS>15</FPS>
1261
+ <Format>Y8</Format>
1262
+ </LeftIR>
1263
+ <RightIR>
1264
+ <!-- The resolution width is enabled by default, int type -->
1265
+ <Width>640</Width>
1266
+ <!-- High resolution is enabled by default, int type -->
1267
+ <Height>400</Height>
1268
+ <!-- The frame rate of the resolution enabled by default, int type -->
1269
+ <FPS>15</FPS>
1270
+ <Format>Y8</Format>
1271
+ </RightIR>
1272
+ </Gemini335Le>
1273
+
1274
+ <!-- Gemini 336 config -->
1275
+ <Gemini336>
1276
+ <!-- The default Linux UVC backend. If the LinuxUVCBackend is set to "Auto," this item
1277
+ will determine the device's speciality. Optional values: V4L2, LibUVC -->
1278
+ <LinuxUVCDefaultBackend>LibUVC</LinuxUVCDefaultBackend>
1279
+
1280
+ <DepthPostProcessing>
1281
+ <HardwareNoiseRemoveFilter>false</HardwareNoiseRemoveFilter>
1282
+ <SoftwareNoiseRemoveFilter>true</SoftwareNoiseRemoveFilter>
1283
+ </DepthPostProcessing>
1284
+
1285
+ <Misc>
1286
+ <GlobalTimestampFitterEnable>true</GlobalTimestampFitterEnable>
1287
+ <!-- Global timestamp fitter refresh interval, unit: milliseconds, default value: 1000,
1288
+ minimum value: 100, it is recommended not to be greater than 1000 -->
1289
+ <GlobalTimestampFitterInterval>1000</GlobalTimestampFitterInterval>
1290
+ <!-- Global timestamp fitter queue size, default value: 100, minimum value: 20 -->
1291
+ <GlobalTimestampFitterQueueSize>100</GlobalTimestampFitterQueueSize>
1292
+ </Misc>
1293
+
1294
+ <!-- Whether to enable heartbeat by default -->
1295
+ <DefaultHeartBeat>0</DefaultHeartBeat>
1296
+ <!-- Whether to enable firmware upgrade foolproof by default, only internal version
1297
+ supports -->
1298
+ <FirmwareUpgradeFoolproof>1</FirmwareUpgradeFoolproof>
1299
+
1300
+ <!-- Depth Filter Params -->
1301
+ <!--
1302
+ <DepthFilterDDOConfig>./Gemini2_v1.0.json</DepthFilterDDOConfig>
1303
+ -->
1304
+ <Depth>
1305
+ <!-- The resolution width is enabled by default, int type -->
1306
+ <Width>848</Width>
1307
+ <!-- High resolution is enabled by default, int type -->
1308
+ <Height>480</Height>
1309
+ <!-- The frame rate of the resolution enabled by default, int type -->
1310
+ <FPS>30</FPS>
1311
+ <Format>Y16</Format>
1312
+ </Depth>
1313
+ <Color>
1314
+ <!-- The resolution width is enabled by default, int type -->
1315
+ <Width>1280</Width>
1316
+ <!-- High resolution is enabled by default, int type -->
1317
+ <Height>720</Height>
1318
+ <!-- The frame rate of the resolution enabled by default, int type -->
1319
+ <FPS>30</FPS>
1320
+ <Format>MJPG</Format>
1321
+ </Color>
1322
+ <IR>
1323
+ <!-- The resolution width is enabled by default, int type -->
1324
+ <Width>848</Width>
1325
+ <!-- High resolution is enabled by default, int type -->
1326
+ <Height>480</Height>
1327
+ <!-- The frame rate of the resolution enabled by default, int type -->
1328
+ <FPS>30</FPS>
1329
+ <Format>Y8</Format>
1330
+ </IR>
1331
+ <LeftIR>
1332
+ <!-- The resolution width is enabled by default, int type -->
1333
+ <Width>848</Width>
1334
+ <!-- High resolution is enabled by default, int type -->
1335
+ <Height>480</Height>
1336
+ <!-- The frame rate of the resolution enabled by default, int type -->
1337
+ <FPS>30</FPS>
1338
+ <Format>Y8</Format>
1339
+ </LeftIR>
1340
+ <RightIR>
1341
+ <!-- The resolution width is enabled by default, int type -->
1342
+ <Width>848</Width>
1343
+ <!-- High resolution is enabled by default, int type -->
1344
+ <Height>480</Height>
1345
+ <!-- The frame rate of the resolution enabled by default, int type -->
1346
+ <FPS>30</FPS>
1347
+ <Format>Y8</Format>
1348
+ </RightIR>
1349
+ </Gemini336>
1350
+
1351
+ <!-- Gemini 336L config -->
1352
+ <Gemini336L>
1353
+ <!-- The default Linux UVC backend. If the LinuxUVCBackend is set to "Auto," this item
1354
+ will determine the device's speciality. Optional values: V4L2, LibUVC -->
1355
+ <LinuxUVCDefaultBackend>LibUVC</LinuxUVCDefaultBackend>
1356
+
1357
+ <DepthPostProcessing>
1358
+ <HardwareNoiseRemoveFilter>false</HardwareNoiseRemoveFilter>
1359
+ <SoftwareNoiseRemoveFilter>true</SoftwareNoiseRemoveFilter>
1360
+ </DepthPostProcessing>
1361
+
1362
+ <Misc>
1363
+ <GlobalTimestampFitterEnable>true</GlobalTimestampFitterEnable>
1364
+ <!-- Global timestamp fitter refresh interval, unit: milliseconds, default value: 1000,
1365
+ minimum value: 100, it is recommended not to be greater than 1000 -->
1366
+ <GlobalTimestampFitterInterval>1000</GlobalTimestampFitterInterval>
1367
+ <!-- Global timestamp fitter queue size, default value: 100, minimum value: 20 -->
1368
+ <GlobalTimestampFitterQueueSize>100</GlobalTimestampFitterQueueSize>
1369
+ </Misc>
1370
+
1371
+ <!-- Whether to enable heartbeat by default -->
1372
+ <DefaultHeartBeat>0</DefaultHeartBeat>
1373
+ <!-- Whether to enable firmware upgrade foolproof by default, only internal version
1374
+ supports -->
1375
+ <FirmwareUpgradeFoolproof>1</FirmwareUpgradeFoolproof>
1376
+
1377
+ <!-- Depth Filter Params -->
1378
+ <!--
1379
+ <DepthFilterDDOConfig>./Gemini2_v1.0.json</DepthFilterDDOConfig>
1380
+ -->
1381
+ <Depth>
1382
+ <!-- The resolution width is enabled by default, int type -->
1383
+ <Width>848</Width>
1384
+ <!-- High resolution is enabled by default, int type -->
1385
+ <Height>480</Height>
1386
+ <!-- The frame rate of the resolution enabled by default, int type -->
1387
+ <FPS>30</FPS>
1388
+ <Format>Y16</Format>
1389
+ </Depth>
1390
+ <Color>
1391
+ <!-- The resolution width is enabled by default, int type -->
1392
+ <Width>1280</Width>
1393
+ <!-- High resolution is enabled by default, int type -->
1394
+ <Height>720</Height>
1395
+ <!-- The frame rate of the resolution enabled by default, int type -->
1396
+ <FPS>30</FPS>
1397
+ <Format>MJPG</Format>
1398
+ </Color>
1399
+ <IR>
1400
+ <!-- The resolution width is enabled by default, int type -->
1401
+ <Width>848</Width>
1402
+ <!-- High resolution is enabled by default, int type -->
1403
+ <Height>480</Height>
1404
+ <!-- The frame rate of the resolution enabled by default, int type -->
1405
+ <FPS>30</FPS>
1406
+ <Format>Y8</Format>
1407
+ </IR>
1408
+ <LeftIR>
1409
+ <!-- The resolution width is enabled by default, int type -->
1410
+ <Width>848</Width>
1411
+ <!-- High resolution is enabled by default, int type -->
1412
+ <Height>480</Height>
1413
+ <!-- The frame rate of the resolution enabled by default, int type -->
1414
+ <FPS>30</FPS>
1415
+ <Format>Y8</Format>
1416
+ </LeftIR>
1417
+ <RightIR>
1418
+ <!-- The resolution width is enabled by default, int type -->
1419
+ <Width>848</Width>
1420
+ <!-- High resolution is enabled by default, int type -->
1421
+ <Height>480</Height>
1422
+ <!-- The frame rate of the resolution enabled by default, int type -->
1423
+ <FPS>30</FPS>
1424
+ <Format>Y8</Format>
1425
+ </RightIR>
1426
+ </Gemini336L>
1427
+
1428
+ <!--DaBaiA config-->
1429
+ <DaBaiA>
1430
+ <!-- The default Linux UVC backend. If the LinuxUVCBackend is set to "Auto," this item
1431
+ will determine the device's speciality. Optional values: V4L2, LibUVC -->
1432
+ <LinuxUVCDefaultBackend>LibUVC</LinuxUVCDefaultBackend>
1433
+
1434
+ <Misc>
1435
+ <GlobalTimestampFitterEnable>true</GlobalTimestampFitterEnable>
1436
+ <!-- Global timestamp fitter refresh interval, unit: milliseconds, default value: 1000,
1437
+ minimum value: 100, it is recommended not to be greater than 1000 -->
1438
+ <GlobalTimestampFitterInterval>1000</GlobalTimestampFitterInterval>
1439
+ <!-- Global timestamp fitter queue size, default value: 100, minimum value: 20 -->
1440
+ <GlobalTimestampFitterQueueSize>100</GlobalTimestampFitterQueueSize>
1441
+ </Misc>
1442
+
1443
+ <DepthPostProcessing>
1444
+ <HardwareNoiseRemoveFilter>false</HardwareNoiseRemoveFilter>
1445
+ <SoftwareNoiseRemoveFilter>true</SoftwareNoiseRemoveFilter>
1446
+ </DepthPostProcessing>
1447
+
1448
+ <!--Whether
1449
+ to enable heartbeat by default-->
1450
+ <DefaultHeartBeat>0</DefaultHeartBeat>
1451
+ <!--Whether
1452
+ to enable firmware upgrade foolproof by default, only internal version supports-->
1453
+ <FirmwareUpgradeFoolproof>1</FirmwareUpgradeFoolproof>
1454
+
1455
+ <Depth>
1456
+ <!--The
1457
+ resolution width is enabled by default, int type-->
1458
+ <Width>640</Width>
1459
+ <!--High
1460
+ resolution is enabled by default, int type-->
1461
+ <Height>480</Height>
1462
+ <!--The
1463
+ frame rate of the resolution enabled by default, int type-->
1464
+ <FPS>30</FPS>
1465
+ <Format>Y16</Format>
1466
+ </Depth>
1467
+ <Color>
1468
+ <!--The
1469
+ resolution width is enabled by default, int type-->
1470
+ <Width>1280</Width>
1471
+ <!--High
1472
+ resolution is enabled by default, int type-->
1473
+ <Height>720</Height>
1474
+ <!--The
1475
+ frame rate of the resolution enabled by default, int type-->
1476
+ <FPS>30</FPS>
1477
+ <Format>MJPG</Format>
1478
+ </Color>
1479
+ <IR>
1480
+ <!--The
1481
+ resolution width is enabled by default, int type-->
1482
+ <Width>640</Width>
1483
+ <!--High
1484
+ resolution is enabled by default, int type-->
1485
+ <Height>480</Height>
1486
+ <!--The
1487
+ frame rate of the resolution enabled by default, int type-->
1488
+ <FPS>30</FPS>
1489
+ <Format>Y8</Format>
1490
+ </IR>
1491
+ <LeftIR>
1492
+ <!--The
1493
+ resolution width is enabled by default, int type-->
1494
+ <Width>640</Width>
1495
+ <!--High
1496
+ resolution is enabled by default, int type-->
1497
+ <Height>480</Height>
1498
+ <!--The
1499
+ frame rate of the resolution enabled by default, int type-->
1500
+ <FPS>30</FPS>
1501
+ <Format>Y8</Format>
1502
+ </LeftIR>
1503
+ <RightIR>
1504
+ <!--The
1505
+ resolution width is enabled by default, int type-->
1506
+ <Width>640</Width>
1507
+ <!--High
1508
+ resolution is enabled by default, int type-->
1509
+ <Height>480</Height>
1510
+ <!--The
1511
+ frame rate of the resolution enabled by default, int type-->
1512
+ <FPS>30</FPS>
1513
+ <Format>Y8</Format>
1514
+ </RightIR>
1515
+ </DaBaiA>
1516
+ <!--Gemini345 config-->
1517
+ <Gemini345>
1518
+ <!-- The default Linux UVC backend. If the LinuxUVCBackend is set to "Auto," this item
1519
+ will determine the device's speciality. Optional values: V4L2, LibUVC -->
1520
+ <LinuxUVCDefaultBackend>LibUVC</LinuxUVCDefaultBackend>
1521
+
1522
+ <Misc>
1523
+ <GlobalTimestampFitterEnable>true</GlobalTimestampFitterEnable>
1524
+ <!-- Global timestamp fitter refresh interval, unit: milliseconds, default value: 1000,
1525
+ minimum value: 100, it is recommended not to be greater than 1000 -->
1526
+ <GlobalTimestampFitterInterval>1000</GlobalTimestampFitterInterval>
1527
+ <!-- Global timestamp fitter queue size, default value: 100, minimum value: 20 -->
1528
+ <GlobalTimestampFitterQueueSize>100</GlobalTimestampFitterQueueSize>
1529
+ </Misc>
1530
+ <DepthPostProcessing>
1531
+ <HardwareNoiseRemoveFilter>false</HardwareNoiseRemoveFilter>
1532
+ <SoftwareNoiseRemoveFilter>true</SoftwareNoiseRemoveFilter>
1533
+ </DepthPostProcessing>
1534
+
1535
+ <!--Whether
1536
+ to enable heartbeat by default-->
1537
+ <DefaultHeartBeat>0</DefaultHeartBeat>
1538
+ <!--Whether
1539
+ to enable firmware upgrade foolproof by default, only internal version supports-->
1540
+ <FirmwareUpgradeFoolproof>1</FirmwareUpgradeFoolproof>
1541
+
1542
+ <Depth>
1543
+ <!--The
1544
+ resolution width is enabled by default, int type-->
1545
+ <Width>640</Width>
1546
+ <!--High
1547
+ resolution is enabled by default, int type-->
1548
+ <Height>480</Height>
1549
+ <!--The
1550
+ frame rate of the resolution enabled by default, int type-->
1551
+ <FPS>30</FPS>
1552
+ <Format>Y16</Format>
1553
+ </Depth>
1554
+ <Color>
1555
+ <!--The
1556
+ resolution width is enabled by default, int type-->
1557
+ <Width>1280</Width>
1558
+ <!--High
1559
+ resolution is enabled by default, int type-->
1560
+ <Height>720</Height>
1561
+ <!--The
1562
+ frame rate of the resolution enabled by default, int type-->
1563
+ <FPS>30</FPS>
1564
+ <Format>MJPG</Format>
1565
+ </Color>
1566
+ <IR>
1567
+ <!--The
1568
+ resolution width is enabled by default, int type-->
1569
+ <Width>640</Width>
1570
+ <!--High
1571
+ resolution is enabled by default, int type-->
1572
+ <Height>480</Height>
1573
+ <!--The
1574
+ frame rate of the resolution enabled by default, int type-->
1575
+ <FPS>30</FPS>
1576
+ <Format>Y8</Format>
1577
+ </IR>
1578
+ <LeftIR>
1579
+ <!--The
1580
+ resolution width is enabled by default, int type-->
1581
+ <Width>640</Width>
1582
+ <!--High
1583
+ resolution is enabled by default, int type-->
1584
+ <Height>480</Height>
1585
+ <!--The
1586
+ frame rate of the resolution enabled by default, int type-->
1587
+ <FPS>30</FPS>
1588
+ <Format>Y8</Format>
1589
+ </LeftIR>
1590
+ <RightIR>
1591
+ <!--The
1592
+ resolution width is enabled by default, int type-->
1593
+ <Width>640</Width>
1594
+ <!--High
1595
+ resolution is enabled by default, int type-->
1596
+ <Height>480</Height>
1597
+ <!--The
1598
+ frame rate of the resolution enabled by default, int type-->
1599
+ <FPS>30</FPS>
1600
+ <Format>Y8</Format>
1601
+ </RightIR>
1602
+ </Gemini345>
1603
+
1604
+ <!--DaBaiAL config-->
1605
+ <DaBaiAL>
1606
+ <!-- The default Linux UVC backend. If the LinuxUVCBackend is set to "Auto," this item
1607
+ will determine the device's speciality. Optional values: V4L2, LibUVC -->
1608
+ <LinuxUVCDefaultBackend>LibUVC</LinuxUVCDefaultBackend>
1609
+
1610
+ <Misc>
1611
+ <GlobalTimestampFitterEnable>true</GlobalTimestampFitterEnable>
1612
+ <!-- Global timestamp fitter refresh interval, unit: milliseconds, default value: 1000,
1613
+ minimum value: 100, it is recommended not to be greater than 1000 -->
1614
+ <GlobalTimestampFitterInterval>1000</GlobalTimestampFitterInterval>
1615
+ <!-- Global timestamp fitter queue size, default value: 100, minimum value: 20 -->
1616
+ <GlobalTimestampFitterQueueSize>100</GlobalTimestampFitterQueueSize>
1617
+ </Misc>
1618
+ <DepthPostProcessing>
1619
+ <HardwareNoiseRemoveFilter>false</HardwareNoiseRemoveFilter>
1620
+ <SoftwareNoiseRemoveFilter>true</SoftwareNoiseRemoveFilter>
1621
+ </DepthPostProcessing>
1622
+
1623
+ <!--Whether
1624
+ to enable heartbeat by default-->
1625
+ <DefaultHeartBeat>0</DefaultHeartBeat>
1626
+ <!--Whether
1627
+ to enable firmware upgrade foolproof by default, only internal version supports-->
1628
+ <FirmwareUpgradeFoolproof>1</FirmwareUpgradeFoolproof>
1629
+
1630
+ <Depth>
1631
+ <!--The
1632
+ resolution width is enabled by default, int type-->
1633
+ <Width>640</Width>
1634
+ <!--High
1635
+ resolution is enabled by default, int type-->
1636
+ <Height>480</Height>
1637
+ <!--The
1638
+ frame rate of the resolution enabled by default, int type-->
1639
+ <FPS>30</FPS>
1640
+ <Format>Y16</Format>
1641
+ </Depth>
1642
+ <Color>
1643
+ <!--The
1644
+ resolution width is enabled by default, int type-->
1645
+ <Width>1280</Width>
1646
+ <!--High
1647
+ resolution is enabled by default, int type-->
1648
+ <Height>720</Height>
1649
+ <!--The
1650
+ frame rate of the resolution enabled by default, int type-->
1651
+ <FPS>30</FPS>
1652
+ <Format>MJPG</Format>
1653
+ </Color>
1654
+ <IR>
1655
+ <!--The
1656
+ resolution width is enabled by default, int type-->
1657
+ <Width>640</Width>
1658
+ <!--High
1659
+ resolution is enabled by default, int type-->
1660
+ <Height>480</Height>
1661
+ <!--The
1662
+ frame rate of the resolution enabled by default, int type-->
1663
+ <FPS>30</FPS>
1664
+ <Format>Y8</Format>
1665
+ </IR>
1666
+ <LeftIR>
1667
+ <!--The
1668
+ resolution width is enabled by default, int type-->
1669
+ <Width>640</Width>
1670
+ <!--High
1671
+ resolution is enabled by default, int type-->
1672
+ <Height>480</Height>
1673
+ <!--The
1674
+ frame rate of the resolution enabled by default, int type-->
1675
+ <FPS>30</FPS>
1676
+ <Format>Y8</Format>
1677
+ </LeftIR>
1678
+ <RightIR>
1679
+ <!--The
1680
+ resolution width is enabled by default, int type-->
1681
+ <Width>640</Width>
1682
+ <!--High
1683
+ resolution is enabled by default, int type-->
1684
+ <Height>480</Height>
1685
+ <!--The
1686
+ frame rate of the resolution enabled by default, int type-->
1687
+ <FPS>30</FPS>
1688
+ <Format>Y8</Format>
1689
+ </RightIR>
1690
+ </DaBaiAL>
1691
+ <!--Gemini345Lg config-->
1692
+ <Gemini345Lg>
1693
+ <!-- The default Linux UVC backend. If the LinuxUVCBackend is set to "Auto," this item
1694
+ will determine the device's speciality. Optional values: V4L2, LibUVC -->
1695
+ <LinuxUVCDefaultBackend>LibUVC</LinuxUVCDefaultBackend>
1696
+
1697
+ <Misc>
1698
+ <GlobalTimestampFitterEnable>true</GlobalTimestampFitterEnable>
1699
+ <!-- Global timestamp fitter refresh interval, unit: milliseconds, default value: 1000,
1700
+ minimum value: 100, it is recommended not to be greater than 1000 -->
1701
+ <GlobalTimestampFitterInterval>1000</GlobalTimestampFitterInterval>
1702
+ <!-- Global timestamp fitter queue size, default value: 100, minimum value: 20 -->
1703
+ <GlobalTimestampFitterQueueSize>100</GlobalTimestampFitterQueueSize>
1704
+ </Misc>
1705
+ <DepthPostProcessing>
1706
+ <HardwareNoiseRemoveFilter>false</HardwareNoiseRemoveFilter>
1707
+ <SoftwareNoiseRemoveFilter>true</SoftwareNoiseRemoveFilter>
1708
+ </DepthPostProcessing>
1709
+
1710
+ <!--Whether
1711
+ to enable heartbeat by default-->
1712
+ <DefaultHeartBeat>0</DefaultHeartBeat>
1713
+ <!--Whether
1714
+ to enable firmware upgrade foolproof by default, only internal version supports-->
1715
+ <FirmwareUpgradeFoolproof>1</FirmwareUpgradeFoolproof>
1716
+
1717
+ <Depth>
1718
+ <!--The
1719
+ resolution width is enabled by default, int type-->
1720
+ <Width>640</Width>
1721
+ <!--High
1722
+ resolution is enabled by default, int type-->
1723
+ <Height>480</Height>
1724
+ <!--The
1725
+ frame rate of the resolution enabled by default, int type-->
1726
+ <FPS>30</FPS>
1727
+ <Format>Y16</Format>
1728
+ </Depth>
1729
+ <Color>
1730
+ <!--The
1731
+ resolution width is enabled by default, int type-->
1732
+ <Width>1280</Width>
1733
+ <!--High
1734
+ resolution is enabled by default, int type-->
1735
+ <Height>720</Height>
1736
+ <!--The
1737
+ frame rate of the resolution enabled by default, int type-->
1738
+ <FPS>30</FPS>
1739
+ <Format>MJPG</Format>
1740
+ </Color>
1741
+ <IR>
1742
+ <!--The
1743
+ resolution width is enabled by default, int type-->
1744
+ <Width>640</Width>
1745
+ <!--High
1746
+ resolution is enabled by default, int type-->
1747
+ <Height>480</Height>
1748
+ <!--The
1749
+ frame rate of the resolution enabled by default, int type-->
1750
+ <FPS>30</FPS>
1751
+ <Format>Y8</Format>
1752
+ </IR>
1753
+ <LeftIR>
1754
+ <!--The
1755
+ resolution width is enabled by default, int type-->
1756
+ <Width>640</Width>
1757
+ <!--High
1758
+ resolution is enabled by default, int type-->
1759
+ <Height>480</Height>
1760
+ <!--The
1761
+ frame rate of the resolution enabled by default, int type-->
1762
+ <FPS>30</FPS>
1763
+ <Format>Y8</Format>
1764
+ </LeftIR>
1765
+ <RightIR>
1766
+ <!--The
1767
+ resolution width is enabled by default, int type-->
1768
+ <Width>640</Width>
1769
+ <!--High
1770
+ resolution is enabled by default, int type-->
1771
+ <Height>480</Height>
1772
+ <!--The
1773
+ frame rate of the resolution enabled by default, int type-->
1774
+ <FPS>30</FPS>
1775
+ <Format>Y8</Format>
1776
+ </RightIR>
1777
+ </Gemini345Lg>
1778
+ <!-- Gemini210 config -->
1779
+ <Gemini210>
1780
+ <!-- The default Linux UVC backend. If the LinuxUVCBackend is set to "Auto," this item
1781
+ will determine the device's speciality. Optional values: V4L2, LibUVC -->
1782
+ <LinuxUVCDefaultBackend>LibUVC</LinuxUVCDefaultBackend>
1783
+
1784
+ <Misc>
1785
+ <GlobalTimestampFitterEnable>false</GlobalTimestampFitterEnable>
1786
+ <!-- Global timestamp fitter refresh interval, unit: milliseconds, default value: 1000,
1787
+ minimum value: 100, it is recommended not to be greater than 1000 -->
1788
+ <GlobalTimestampFitterInterval>1000</GlobalTimestampFitterInterval>
1789
+ <!-- Global timestamp fitter queue size, default value: 100, minimum value: 20 -->
1790
+ <GlobalTimestampFitterQueueSize>100</GlobalTimestampFitterQueueSize>
1791
+ </Misc>
1792
+
1793
+ <!-- Whether to enable heartbeat by default -->
1794
+ <DefaulHeartBeat>0</DefaulHeartBeat>
1795
+
1796
+ <Depth>
1797
+ <!-- The resolution width is enabled by default, int type -->
1798
+ <Width>1280</Width>
1799
+ <!-- High resolution is enabled by default, int type -->
1800
+ <Height>800</Height>
1801
+ <!-- The frame rate of the resolution enabled by default, int type -->
1802
+ <FPS>15</FPS>
1803
+ <Format>Y16</Format>
1804
+ </Depth>
1805
+ <Color>
1806
+ <!-- The resolution width is enabled by default, int type -->
1807
+ <Width>1280</Width>
1808
+ <!-- High resolution is enabled by default, int type -->
1809
+ <Height>720</Height>
1810
+ <!-- The frame rate of the resolution enabled by default, int type -->
1811
+ <FPS>15</FPS>
1812
+ <!-- The frame rate of the resolution enabled by default, int type -->
1813
+ <Format>MJPG</Format>
1814
+ </Color>
1815
+ <IR>
1816
+ <!-- The resolution width is enabled by default, int type -->
1817
+ <Width>1280</Width>
1818
+ <!-- High resolution is enabled by default, int type -->
1819
+ <Height>800</Height>
1820
+ <!-- The frame rate of the resolution enabled by default, int type -->
1821
+ <FPS>15</FPS>
1822
+ <!-- The frame rate of the resolution enabled by default, int type -->
1823
+ <Format>Y8</Format>
1824
+ </IR>
1825
+ </Gemini210>
1826
+ <!-- Gemini215 config -->
1827
+ <Gemini215>
1828
+ <!-- The default Linux UVC backend. If the LinuxUVCBackend is set to "Auto," this item
1829
+ will determine the device's speciality. Optional values: V4L2, LibUVC -->
1830
+ <LinuxUVCDefaultBackend>LibUVC</LinuxUVCDefaultBackend>
1831
+
1832
+ <Misc>
1833
+ <GlobalTimestampFitterEnable>false</GlobalTimestampFitterEnable>
1834
+ <!-- Global timestamp fitter refresh interval, unit: milliseconds, default value: 1000,
1835
+ minimum value: 100, it is recommended not to be greater than 1000 -->
1836
+ <GlobalTimestampFitterInterval>1000</GlobalTimestampFitterInterval>
1837
+ <!-- Global timestamp fitter queue size, default value: 100, minimum value: 20 -->
1838
+ <GlobalTimestampFitterQueueSize>100</GlobalTimestampFitterQueueSize>
1839
+ </Misc>
1840
+
1841
+ <!-- Whether to enable heartbeat by default -->
1842
+ <DefaulHeartBeat>0</DefaulHeartBeat>
1843
+
1844
+ <Depth>
1845
+ <!-- The resolution width is enabled by default, int type -->
1846
+ <Width>1280</Width>
1847
+ <!-- High resolution is enabled by default, int type -->
1848
+ <Height>800</Height>
1849
+ <!-- The frame rate of the resolution enabled by default, int type -->
1850
+ <FPS>15</FPS>
1851
+ <Format>Y16</Format>
1852
+ </Depth>
1853
+ <Color>
1854
+ <!-- The resolution width is enabled by default, int type -->
1855
+ <Width>1280</Width>
1856
+ <!-- High resolution is enabled by default, int type -->
1857
+ <Height>720</Height>
1858
+ <!-- The frame rate of the resolution enabled by default, int type -->
1859
+ <FPS>15</FPS>
1860
+ <!-- The frame rate of the resolution enabled by default, int type -->
1861
+ <Format>MJPG</Format>
1862
+ </Color>
1863
+ <IR>
1864
+ <!-- The resolution width is enabled by default, int type -->
1865
+ <Width>1280</Width>
1866
+ <!-- High resolution is enabled by default, int type -->
1867
+ <Height>800</Height>
1868
+ <!-- The frame rate of the resolution enabled by default, int type -->
1869
+ <FPS>15</FPS>
1870
+ <!-- The frame rate of the resolution enabled by default, int type -->
1871
+ <Format>Y8</Format>
1872
+ </IR>
1873
+ </Gemini215>
1874
+
1875
+ <!-- CAM-5330 config -->
1876
+ <CAM-5330>
1877
+ <!-- The default Linux UVC backend. If the LinuxUVCBackend is set to "Auto," this item
1878
+ will determine the device's speciality. Optional values: V4L2, LibUVC -->
1879
+ <LinuxUVCDefaultBackend>LibUVC</LinuxUVCDefaultBackend>
1880
+
1881
+ <DepthPostProcessing>
1882
+ <HardwareNoiseRemoveFilter>false</HardwareNoiseRemoveFilter>
1883
+ <SoftwareNoiseRemoveFilter>true</SoftwareNoiseRemoveFilter>
1884
+ </DepthPostProcessing>
1885
+
1886
+ <Misc>
1887
+ <GlobalTimestampFitterEnable>true</GlobalTimestampFitterEnable>
1888
+ <!-- Global timestamp fitter refresh interval, unit: milliseconds, default value: 1000,
1889
+ minimum value: 100, it is recommended not to be greater than 1000 -->
1890
+ <GlobalTimestampFitterInterval>1000</GlobalTimestampFitterInterval>
1891
+ <!-- Global timestamp fitter queue size, default value: 100, minimum value: 20 -->
1892
+ <GlobalTimestampFitterQueueSize>100</GlobalTimestampFitterQueueSize>
1893
+ </Misc>
1894
+
1895
+ <!-- Whether to enable heartbeat by default -->
1896
+ <DefaultHeartBeat>0</DefaultHeartBeat>
1897
+ <!-- Whether to enable firmware upgrade foolproof by default, only internal version
1898
+ supports -->
1899
+ <FirmwareUpgradeFoolproof>1</FirmwareUpgradeFoolproof>
1900
+
1901
+ <!-- Depth Filter Params -->
1902
+ <!--
1903
+ <DepthFilterDDOConfig>./Gemini2_v1.0.json</DepthFilterDDOConfig>
1904
+ -->
1905
+ <Depth>
1906
+ <!-- Number of retries for open stream failures, 0 means no retries -->
1907
+ <StreamFailedRetry>0</StreamFailedRetry>
1908
+ <!-- Open flow waits for the timeout period of the first frame of data, after which
1909
+ the open flow will fail -->
1910
+ <MaxStartStreamDelayMs>5000</MaxStartStreamDelayMs>
1911
+ <!-- The number of data stream restarts due to abnormal interruption, 0 means no
1912
+ restart -->
1913
+ <StreamInterruptedRestart>0</StreamInterruptedRestart>
1914
+ <!-- The maximum frame interval time, if this value is exceeded, it will be judged
1915
+ that the stream is interrupted -->
1916
+ <MaxFrameIntervalMs>2000</MaxFrameIntervalMs>
1917
+ <!-- The resolution width is enabled by default, int type -->
1918
+ <Width>848</Width>
1919
+ <!-- High resolution is enabled by default, int type -->
1920
+ <Height>480</Height>
1921
+ <!-- The frame rate of the resolution enabled by default, int type -->
1922
+ <FPS>30</FPS>
1923
+ <Format>Y16</Format>
1924
+ </Depth>
1925
+ <Color>
1926
+ <!-- The resolution width is enabled by default, int type -->
1927
+ <Width>1280</Width>
1928
+ <!-- High resolution is enabled by default, int type -->
1929
+ <Height>720</Height>
1930
+ <!-- The frame rate of the resolution enabled by default, int type -->
1931
+ <FPS>30</FPS>
1932
+ <Format>MJPG</Format>
1933
+ </Color>
1934
+ <IR>
1935
+ <!-- The resolution width is enabled by default, int type -->
1936
+ <Width>848</Width>
1937
+ <!-- High resolution is enabled by default, int type -->
1938
+ <Height>480</Height>
1939
+ <!-- The frame rate of the resolution enabled by default, int type -->
1940
+ <FPS>30</FPS>
1941
+ <Format>Y8</Format>
1942
+ </IR>
1943
+ <LeftIR>
1944
+ <!-- The resolution width is enabled by default, int type -->
1945
+ <Width>848</Width>
1946
+ <!-- High resolution is enabled by default, int type -->
1947
+ <Height>480</Height>
1948
+ <!-- The frame rate of the resolution enabled by default, int type -->
1949
+ <FPS>30</FPS>
1950
+ <Format>Y8</Format>
1951
+ </LeftIR>
1952
+ <RightIR>
1953
+ <!-- The resolution width is enabled by default, int type -->
1954
+ <Width>848</Width>
1955
+ <!-- High resolution is enabled by default, int type -->
1956
+ <Height>480</Height>
1957
+ <!-- The frame rate of the resolution enabled by default, int type -->
1958
+ <FPS>30</FPS>
1959
+ <Format>Y8</Format>
1960
+ </RightIR>
1961
+ </CAM-5330>
1962
+
1963
+ <!-- CAM-5530 config -->
1964
+ <CAM-5530>
1965
+ <!-- The default Linux UVC backend. If the LinuxUVCBackend is set to "Auto," this item
1966
+ will determine the device's speciality. Optional values: V4L2, LibUVC -->
1967
+ <LinuxUVCDefaultBackend>LibUVC</LinuxUVCDefaultBackend>
1968
+
1969
+ <DepthPostProcessing>
1970
+ <HardwareNoiseRemoveFilter>false</HardwareNoiseRemoveFilter>
1971
+ <SoftwareNoiseRemoveFilter>true</SoftwareNoiseRemoveFilter>
1972
+ </DepthPostProcessing>
1973
+
1974
+ <Misc>
1975
+ <GlobalTimestampFitterEnable>true</GlobalTimestampFitterEnable>
1976
+ <!-- Global timestamp fitter refresh interval, unit: milliseconds, default value: 1000,
1977
+ minimum value: 100, it is recommended not to be greater than 1000 -->
1978
+ <GlobalTimestampFitterInterval>1000</GlobalTimestampFitterInterval>
1979
+ <!-- Global timestamp fitter queue size, default value: 100, minimum value: 20 -->
1980
+ <GlobalTimestampFitterQueueSize>100</GlobalTimestampFitterQueueSize>
1981
+ </Misc>
1982
+
1983
+ <!-- Whether to enable heartbeat by default -->
1984
+ <DefaultHeartBeat>0</DefaultHeartBeat>
1985
+ <!-- Whether to enable firmware upgrade foolproof by default, only internal version
1986
+ supports -->
1987
+ <FirmwareUpgradeFoolproof>1</FirmwareUpgradeFoolproof>
1988
+
1989
+ <!-- Depth Filter Params -->
1990
+ <!--
1991
+ <DepthFilterDDOConfig>./Gemini2_v1.0.json</DepthFilterDDOConfig>
1992
+ -->
1993
+ <Depth>
1994
+ <!-- Number of retries for open stream failures, 0 means no retries -->
1995
+ <StreamFailedRetry>0</StreamFailedRetry>
1996
+ <!-- Open flow waits for the timeout period of the first frame of data, after which
1997
+ the open flow will fail -->
1998
+ <MaxStartStreamDelayMs>5000</MaxStartStreamDelayMs>
1999
+ <!-- The number of data stream restarts due to abnormal interruption, 0 means no
2000
+ restart -->
2001
+ <StreamInterruptedRestart>0</StreamInterruptedRestart>
2002
+ <!-- The maximum frame interval time, if this value is exceeded, it will be judged
2003
+ that the stream is interrupted -->
2004
+ <MaxFrameIntervalMs>2000</MaxFrameIntervalMs>
2005
+ <!-- The resolution width is enabled by default, int type -->
2006
+ <Width>848</Width>
2007
+ <!-- High resolution is enabled by default, int type -->
2008
+ <Height>480</Height>
2009
+ <!-- The frame rate of the resolution enabled by default, int type -->
2010
+ <FPS>30</FPS>
2011
+ <Format>Y16</Format>
2012
+ </Depth>
2013
+ <Color>
2014
+ <!-- The resolution width is enabled by default, int type -->
2015
+ <Width>1280</Width>
2016
+ <!-- High resolution is enabled by default, int type -->
2017
+ <Height>720</Height>
2018
+ <!-- The frame rate of the resolution enabled by default, int type -->
2019
+ <FPS>30</FPS>
2020
+ <Format>MJPG</Format>
2021
+ </Color>
2022
+ <IR>
2023
+ <!-- The resolution width is enabled by default, int type -->
2024
+ <Width>848</Width>
2025
+ <!-- High resolution is enabled by default, int type -->
2026
+ <Height>480</Height>
2027
+ <!-- The frame rate of the resolution enabled by default, int type -->
2028
+ <FPS>30</FPS>
2029
+ <Format>Y8</Format>
2030
+ </IR>
2031
+ <LeftIR>
2032
+ <!-- The resolution width is enabled by default, int type -->
2033
+ <Width>848</Width>
2034
+ <!-- High resolution is enabled by default, int type -->
2035
+ <Height>480</Height>
2036
+ <!-- The frame rate of the resolution enabled by default, int type -->
2037
+ <FPS>30</FPS>
2038
+ <Format>Y8</Format>
2039
+ </LeftIR>
2040
+ <RightIR>
2041
+ <!-- The resolution width is enabled by default, int type -->
2042
+ <Width>848</Width>
2043
+ <!-- High resolution is enabled by default, int type -->
2044
+ <Height>480</Height>
2045
+ <!-- The frame rate of the resolution enabled by default, int type -->
2046
+ <FPS>30</FPS>
2047
+ <Format>Y8</Format>
2048
+ </RightIR>
2049
+ </CAM-5530>
2050
+
2051
+ <!-- Gemini435Le config -->
2052
+ <Gemini435Le>
2053
+ <!-- The default Linux UVC backend. If the LinuxUVCBackend is set to "Auto," this item
2054
+ will determine the device's speciality. Optional values: V4L2, LibUVC -->
2055
+ <LinuxUVCDefaultBackend>LibUVC</LinuxUVCDefaultBackend>
2056
+
2057
+ <!-- Whether to enable heartbeat by default -->
2058
+ <DefaulHeartBeat>0</DefaulHeartBeat>
2059
+
2060
+ <!--Max frame delay-->
2061
+ <MaxFrameDelay>1.2</MaxFrameDelay>
2062
+
2063
+ <Depth>
2064
+ <!-- Number of retries for open stream failures, 0 means no retries -->
2065
+ <StreamFailedRetry>15</StreamFailedRetry>
2066
+ <!-- Open flow waits for the timeout period of the first frame of data, after which
2067
+ the open flow will fail -->
2068
+ <MaxStartStreamDelayMs>5000</MaxStartStreamDelayMs>
2069
+ <!-- The maximum frame interval time, if this value is exceeded, it will be judged
2070
+ that the stream is interrupted -->
2071
+ <MaxFrameIntervalMs>3000</MaxFrameIntervalMs>
2072
+ <!-- The resolution width is enabled by default, int type -->
2073
+ <Width>1280</Width>
2074
+ <!-- High resolution is enabled by default, int type -->
2075
+ <Height>800</Height>
2076
+ <!-- The frame rate of the resolution enabled by default, int type -->
2077
+ <FPS>10</FPS>
2078
+ <Format>RVL</Format>
2079
+ </Depth>
2080
+ <Color>
2081
+ <!-- The resolution width is enabled by default, int type -->
2082
+ <Width>1280</Width>
2083
+ <!-- High resolution is enabled by default, int type -->
2084
+ <Height>800</Height>
2085
+ <!-- The frame rate of the resolution enabled by default, int type -->
2086
+ <FPS>10</FPS>
2087
+ <Format>MJPG</Format>
2088
+ <!-- Number of retries for open stream failures, 0 means no retries -->
2089
+ <StreamFailedRetry>15</StreamFailedRetry>
2090
+ <!-- Open flow waits for the timeout period of the first frame of data, after which
2091
+ the open flow will fail -->
2092
+ <MaxStartStreamDelayMs>5000</MaxStartStreamDelayMs>
2093
+ <!-- The maximum frame interval time, if this value is exceeded, it will be judged
2094
+ that the stream is interrupted -->
2095
+ <MaxFrameIntervalMs>3000</MaxFrameIntervalMs>
2096
+ </Color>
2097
+ <LeftIR>
2098
+ <!-- The resolution width is enabled by default, int type -->
2099
+ <Width>1280</Width>
2100
+ <!-- High resolution is enabled by default, int type -->
2101
+ <Height>800</Height>
2102
+ <!-- The frame rate of the resolution enabled by default, int type -->
2103
+ <FPS>10</FPS>
2104
+ <Format>Y8</Format>
2105
+ <!-- Number of retries for open stream failures, 0 means no retries -->
2106
+ <StreamFailedRetry>15</StreamFailedRetry>
2107
+ <!-- Open flow waits for the timeout period of the first frame of data, after which
2108
+ the open flow will fail -->
2109
+ <MaxStartStreamDelayMs>5000</MaxStartStreamDelayMs>
2110
+ <!-- The maximum frame interval time, if this value is exceeded, it will be judged
2111
+ that the stream is interrupted -->
2112
+ <MaxFrameIntervalMs>3000</MaxFrameIntervalMs>
2113
+ </LeftIR>
2114
+ <RightIR>
2115
+ <!-- The resolution width is enabled by default, int type -->
2116
+ <Width>1280</Width>
2117
+ <!-- High resolution is enabled by default, int type -->
2118
+ <Height>800</Height>
2119
+ <!-- The frame rate of the resolution enabled by default, int type -->
2120
+ <FPS>10</FPS>
2121
+ <Format>Y8</Format>
2122
+ <!-- Number of retries for open stream failures, 0 means no retries -->
2123
+ <StreamFailedRetry>15</StreamFailedRetry>
2124
+ <!-- Open flow waits for the timeout period of the first frame of data, after which
2125
+ the open flow will fail -->
2126
+ <MaxStartStreamDelayMs>5000</MaxStartStreamDelayMs>
2127
+ <!-- The maximum frame interval time, if this value is exceeded, it will be judged
2128
+ that the stream is interrupted -->
2129
+ <MaxFrameIntervalMs>3000</MaxFrameIntervalMs>
2130
+ </RightIR>
2131
+ <Accel>
2132
+
2133
+ <!-- Number of retries for open stream failures, 0 means no retries -->
2134
+ <StreamFailedRetry>0</StreamFailedRetry>
2135
+ <!-- Open flow waits for the timeout period of the first frame of data, after which
2136
+ the open flow will fail -->
2137
+ <MaxStartStreamDelayMs>5000</MaxStartStreamDelayMs>
2138
+ <!-- The maximum frame interval time, if this value is exceeded, it will be judged
2139
+ that the stream is interrupted -->
2140
+ <MaxFrameIntervalMs>3000</MaxFrameIntervalMs>
2141
+ </Accel>
2142
+ <Gyro>
2143
+ <!-- Number of retries for open stream failures, 0 means no retries -->
2144
+ <StreamFailedRetry>0</StreamFailedRetry>
2145
+ <!-- Open flow waits for the timeout period of the first frame of data, after which
2146
+ the open flow will fail -->
2147
+ <MaxStartStreamDelayMs>5000</MaxStartStreamDelayMs>
2148
+ <!-- The maximum frame interval time, if this value is exceeded, it will be judged
2149
+ that the stream is interrupted -->
2150
+ <MaxFrameIntervalMs>3000</MaxFrameIntervalMs>
2151
+ </Gyro>
2152
+
2153
+ <!-- Configurations in different camera depth modes -->
2154
+ <BinnedSparseDefault>
2155
+ <Color>
2156
+ <!-- The resolution width is enabled by default, int type -->
2157
+ <Width>1280</Width>
2158
+ <!-- High resolution is enabled by default, int type -->
2159
+ <Height>800</Height>
2160
+ <!-- The frame rate of the resolution enabled by default, int type -->
2161
+ <FPS>20</FPS>
2162
+ <Format>MJPG</Format>
2163
+ <!-- Number of retries for open stream failures, 0 means no retries -->
2164
+ <StreamFailedRetry>0</StreamFailedRetry>
2165
+ <!-- The number of data stream restarts due to abnormal interruption, 0 means no
2166
+ restart -->
2167
+ <StreamInterruptedRestart>5</StreamInterruptedRestart>
2168
+ <!-- The maximum frame interval time, if this value is exceeded, it will be
2169
+ judged that the stream is interrupted -->
2170
+ <MaxFrameIntervalMs>5000</MaxFrameIntervalMs>
2171
+ </Color>
2172
+ <Depth>
2173
+ <!-- The resolution width is enabled by default, int type -->
2174
+ <Width>640</Width>
2175
+ <!-- High resolution is enabled by default, int type -->
2176
+ <Height>400</Height>
2177
+ <!-- The frame rate of the resolution enabled by default, int type -->
2178
+ <FPS>20</FPS>
2179
+ <Format>RVL</Format>
2180
+ <!-- Number of retries for open stream failures, 0 means no retries -->
2181
+ <StreamFailedRetry>0</StreamFailedRetry>
2182
+ <!-- The number of data stream restarts due to abnormal interruption, 0 means no
2183
+ restart -->
2184
+ <StreamInterruptedRestart>5</StreamInterruptedRestart>
2185
+ <!-- The maximum frame interval time, if this value is exceeded, it will be
2186
+ judged that the stream is interrupted -->
2187
+ <MaxFrameIntervalMs>5000</MaxFrameIntervalMs>
2188
+ </Depth>
2189
+ <LeftIR>
2190
+ <!-- The resolution width is enabled by default, int type -->
2191
+ <Width>640</Width>
2192
+ <!-- High resolution is enabled by default, int type -->
2193
+ <Height>400</Height>
2194
+ <!-- The frame rate of the resolution enabled by default, int type -->
2195
+ <FPS>20</FPS>
2196
+ <Format>Y8</Format>
2197
+ <!-- Number of retries for open stream failures, 0 means no retries -->
2198
+ <StreamFailedRetry>0</StreamFailedRetry>
2199
+ <!-- The number of data stream restarts due to abnormal interruption, 0 means no
2200
+ restart -->
2201
+ <StreamInterruptedRestart>5</StreamInterruptedRestart>
2202
+ <!-- The maximum frame interval time, if this value is exceeded, it will be
2203
+ judged that the stream is interrupted -->
2204
+ <MaxFrameIntervalMs>5000</MaxFrameIntervalMs>
2205
+ </LeftIR>
2206
+ <RightIR>
2207
+ <!-- The resolution width is enabled by default, int type -->
2208
+ <Width>640</Width>
2209
+ <!-- High resolution is enabled by default, int type -->
2210
+ <Height>400</Height>
2211
+ <!-- The frame rate of the resolution enabled by default, int type -->
2212
+ <FPS>20</FPS>
2213
+ <Format>Y8</Format>
2214
+ <!-- Number of retries for open stream failures, 0 means no retries -->
2215
+ <StreamFailedRetry>0</StreamFailedRetry>
2216
+ <!-- The number of data stream restarts due to abnormal interruption, 0 means no
2217
+ restart -->
2218
+ <StreamInterruptedRestart>5</StreamInterruptedRestart>
2219
+ <!-- The maximum frame interval time, if this value is exceeded, it will be
2220
+ judged that the stream is interrupted -->
2221
+ <MaxFrameIntervalMs>5000</MaxFrameIntervalMs>
2222
+ </RightIR>
2223
+ </BinnedSparseDefault>
2224
+ <FactoryCalibration>
2225
+ <Color>
2226
+ <!-- The resolution width is enabled by default, int type -->
2227
+ <Width>1280</Width>
2228
+ <!-- High resolution is enabled by default, int type -->
2229
+ <Height>800</Height>
2230
+ <!-- The frame rate of the resolution enabled by default, int type -->
2231
+ <FPS>10</FPS>
2232
+ <Format>MJPG</Format>
2233
+ <!-- Number of retries for open stream failures, 0 means no retries -->
2234
+ <StreamFailedRetry>0</StreamFailedRetry>
2235
+ <!-- The number of data stream restarts due to abnormal interruption, 0 means no
2236
+ restart -->
2237
+ <StreamInterruptedRestart>5</StreamInterruptedRestart>
2238
+ <!-- The maximum frame interval time, if this value is exceeded, it will be
2239
+ judged that the stream is interrupted -->
2240
+ <MaxFrameIntervalMs>5000</MaxFrameIntervalMs>
2241
+ </Color>
2242
+ <LeftIR>
2243
+ <!-- The resolution width is enabled by default, int type -->
2244
+ <Width>1280</Width>
2245
+ <!-- High resolution is enabled by default, int type -->
2246
+ <Height>800</Height>
2247
+ <!-- The frame rate of the resolution enabled by default, int type -->
2248
+ <FPS>10</FPS>
2249
+ <Format>Y10</Format>
2250
+ <!-- Number of retries for open stream failures, 0 means no retries -->
2251
+ <StreamFailedRetry>0</StreamFailedRetry>
2252
+ <!-- The number of data stream restarts due to abnormal interruption, 0 means no
2253
+ restart -->
2254
+ <StreamInterruptedRestart>5</StreamInterruptedRestart>
2255
+ <!-- The maximum frame interval time, if this value is exceeded, it will be
2256
+ judged that the stream is interrupted -->
2257
+ <MaxFrameIntervalMs>5000</MaxFrameIntervalMs>
2258
+ </LeftIR>
2259
+ <RightIR>
2260
+ <!-- The resolution width is enabled by default, int type -->
2261
+ <Width>1280</Width>
2262
+ <!-- High resolution is enabled by default, int type -->
2263
+ <Height>800</Height>
2264
+ <!-- The frame rate of the resolution enabled by default, int type -->
2265
+ <FPS>10</FPS>
2266
+ <Format>Y10</Format>
2267
+ <!-- Number of retries for open stream failures, 0 means no retries -->
2268
+ <StreamFailedRetry>0</StreamFailedRetry>
2269
+ <!-- The number of data stream restarts due to abnormal interruption, 0 means no
2270
+ restart -->
2271
+ <StreamInterruptedRestart>5</StreamInterruptedRestart>
2272
+ <!-- The maximum frame interval time, if this value is exceeded, it will be
2273
+ judged that the stream is interrupted -->
2274
+ <MaxFrameIntervalMs>5000</MaxFrameIntervalMs>
2275
+ </RightIR>
2276
+ </FactoryCalibration>
2277
+ <In-sceneCalibration>
2278
+ <Color>
2279
+ <!-- The resolution width is enabled by default, int type -->
2280
+ <Width>1280</Width>
2281
+ <!-- High resolution is enabled by default, int type -->
2282
+ <Height>800</Height>
2283
+ <!-- The frame rate of the resolution enabled by default, int type -->
2284
+ <FPS>10</FPS>
2285
+ <Format>MJPG</Format>
2286
+ <!-- Number of retries for open stream failures, 0 means no retries -->
2287
+ <StreamFailedRetry>0</StreamFailedRetry>
2288
+ <!-- The number of data stream restarts due to abnormal interruption, 0 means no
2289
+ restart -->
2290
+ <StreamInterruptedRestart>5</StreamInterruptedRestart>
2291
+ <!-- The maximum frame interval time, if this value is exceeded, it will be
2292
+ judged that the stream is interrupted -->
2293
+ <MaxFrameIntervalMs>5000</MaxFrameIntervalMs>
2294
+ </Color>
2295
+ <LeftIR>
2296
+ <!-- The resolution width is enabled by default, int type -->
2297
+ <Width>1280</Width>
2298
+ <!-- High resolution is enabled by default, int type -->
2299
+ <Height>800</Height>
2300
+ <!-- The frame rate of the resolution enabled by default, int type -->
2301
+ <FPS>10</FPS>
2302
+ <Format>Y8</Format>
2303
+ <!-- Number of retries for open stream failures, 0 means no retries -->
2304
+ <StreamFailedRetry>0</StreamFailedRetry>
2305
+ <!-- The number of data stream restarts due to abnormal interruption, 0 means no
2306
+ restart -->
2307
+ <StreamInterruptedRestart>5</StreamInterruptedRestart>
2308
+ <!-- The maximum frame interval time, if this value is exceeded, it will be
2309
+ judged that the stream is interrupted -->
2310
+ <MaxFrameIntervalMs>5000</MaxFrameIntervalMs>
2311
+ </LeftIR>
2312
+ <RightIR>
2313
+ <!-- The resolution width is enabled by default, int type -->
2314
+ <Width>1280</Width>
2315
+ <!-- High resolution is enabled by default, int type -->
2316
+ <Height>800</Height>
2317
+ <!-- The frame rate of the resolution enabled by default, int type -->
2318
+ <FPS>10</FPS>
2319
+ <Format>Y8</Format>
2320
+ <!-- Number of retries for open stream failures, 0 means no retries -->
2321
+ <StreamFailedRetry>0</StreamFailedRetry>
2322
+ <!-- The number of data stream restarts due to abnormal interruption, 0 means no
2323
+ restart -->
2324
+ <StreamInterruptedRestart>5</StreamInterruptedRestart>
2325
+ <!-- The maximum frame interval time, if this value is exceeded, it will be
2326
+ judged that the stream is interrupted -->
2327
+ <MaxFrameIntervalMs>5000</MaxFrameIntervalMs>
2328
+ </RightIR>
2329
+ </In-sceneCalibration>
2330
+ </Gemini435Le>
2331
+ </Device>
2332
+ </Config>