Upon initializing my pipeline, I follow up with:
dai::CameraControl ctrl;
ctrl.setSceneMode(dai::CameraControl::SceneMode::ACTION);
controlQueue->send(ctrl);
Does this have any effect? I ask, as in experimenting with changing the scene mode at runtime just now, it seems to only have an effect if I also call:
ctrl.setControlMode(dai::CameraControl::ControlMode::USE_SCENE_MODE);
Is the above setControlMode
call required for a setSceneMode
call to have an effect?