Hi @apirrone
Sorry for the delay... This is a strange issue. Unfortunately I don't have 2x IMX296 to try to replicate it.
I noticed in the video that when the camera view in right
window is covered, then the exposure/ISO in left
starts increasing. Just to confirm, are the cameras "swapped" in your setup (i.e. left
is mapped to CAM_C
)? It should be no problem if so, just to understand the behavior.
It may be worth experimenting with the new option "3a-follow"
available on camera_controls_misc
luxonis/depthai-python986 (we'll also merge this today to develop):
camNodeB.initialControl.setMisc("3a-follow", dai.CameraBoardSocket.CAM_C)
camNodeC.initialControl.setMisc("3a-follow", dai.CameraBoardSocket.CAM_C)
(by default it would be the opposite, CAM_B 3A driving CAM_C as well)
or each camera's exposure to be set by its own ISP statistics:
camNodeB.initialControl.setMisc("3a-follow", dai.CameraBoardSocket.CAM_B)
camNodeC.initialControl.setMisc("3a-follow", dai.CameraBoardSocket.CAM_C)
however when shared-I2C ports B and C are used, independent exposures cannot be set, the exposure set on CAM_C is applied to both (and exposure set to CAM_B is ignored).