Re:Demultiplexing UVC Images from oCamS-1CGN-U

Author
withrobot
Date
2021-02-24 09:44
Views
274
Thank you for using our product.

We recommend to use our source code but it works on Linux or Wondows.
So you can easily try as below.

1. Use opencv function : split
cv::split(srcImg, dstImg);

2. And it may splited to 2 channels
cv::Mat right_image = dstImg[0];
cv::Mat left_image = dstImg[1];

Try it, and let me know if you have any problems.