Access single mode through python opencv

Hi,

I have two RPi cameras connected to the 1st Gen Sync Stereo Camera HAT. I followed this guide to set it up, however I am not able to access single mode through OpenCV Python mode. All I need is to get both the camera feed on separate windows, not in the same window adjacent to each other.

Please help! Thanks

@greyduck

You can’t display two windows separately.
But we support single channel display, and you can implement an interface yourself to achieve this effect by switching channels repeatedly

@Edward

Thanks for your response. I would like to know if I can access the registers through python to enable the single channel display. If yes, how can I do it? Thanks again.

@greyduck

You can call the command line in python
(Just for reference, the specific parameters need to be adjusted by you.)
8
9
10

i2cset -y 0 0x24 0x24 0x01 #Camera 1
i2cset -y 0 0x24 0x24 0x02 #Camera 2