Hi.
I have an easycap002 4-channel video grabber where I can connect 4 composite cameras.
It works with v4l2 on my raspberry, where I can select all 4 channels and show each individual stream.
In C++ I can get 1st channel with
cv::VideoCapture camera(0);
How can I capture all other channels (Composite1 … 3)?
Thanks
Egon