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 75f9827 commit 8f54bbcCopy full SHA for 8f54bbc
utilities/cam_test.py
@@ -517,6 +517,12 @@ def socket_to_socket_opt(socket: dai.CameraBoardSocket) -> str:
517
controlQueue = device.getInputQueue('control')
518
tofCfgQueue = device.getInputQueue('tofConfig')
519
520
+ # TMP workaround, send again HDR local tone weight which doesn't seem to take effect from initialControl
521
+ if hdr_on:
522
+ ctrl = dai.CameraControl()
523
+ ctrl.setMisc("hdr-local-tone-weight", hdr_local_tone_weight / 32)
524
+ controlQueue.send(ctrl)
525
+
526
# Manual exposure/focus set step
527
EXP_STEP = 500 # us
528
ISO_STEP = 50
0 commit comments