We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c2b0cd commit 2c43c8cCopy full SHA for 2c43c8c
utilities/cam_test.py
@@ -428,6 +428,10 @@ def exit_cleanly(signum, frame):
428
print("ToF toggling f_mod value to:", f_mod)
429
tofConfig.depthParams.freqModUsed = f_mod
430
tofCfgQueue.send(tofConfig)
431
+ elif key == ord('h'):
432
+ tofConfig.depthParams.avgPhaseShuffle = not tofConfig.depthParams.avgPhaseShuffle
433
+ print("ToF toggling avgPhaseShuffle value to:", tofConfig.depthParams.avgPhaseShuffle)
434
+ tofCfgQueue.send(tofConfig)
435
elif key == ord('t'):
436
print("Autofocus trigger (and disable continuous)")
437
ctrl = dai.CameraControl()
0 commit comments