Hello, I am working with the SDK to do some stereo video work with my OAK-D PRO. I saw in the Stereo Component Documentation that you can use the SDK to configure the stereo camera similar to using the API directly. However, the configs I am setting don't seem to be making any changes:
For example, I have this block of code that should set the stereo camera to extended disparity with LR checking and set the IR projection to 1000, but the IR still sets itself to the default 800 and neither extended nor LR checking are enabled:
with OakCamera() as oak:
color = oak.camera('color')
stereo = oak.stereo('800p', fps=60)
stereo.config_stereo(extended=True, lr_check=True)
stereo.set_ir(dot_projector_brightness=1000)
oak.visualize([stereo], fps=True, callback=cb)
oak.start(blocking=True)
I'm sure I'm just making a simple mistake but some help would be appreciated, thank you