(一)双目标定OpenCV读双目摄像头合并图像并分割

买了个usb接口的双目摄像头,首先读出图像,发现读出来的图像是合并的,将整个图像分割为左右图像,并且实时显示.

#include 
#include 
#include
using namespace cv;
using namespace std;

#define WIDTH 2560
#define HEIGHT 720
int main() {

    VideoCapture capture(0);
    if (!capture.isOpened())
    {
        cout<<"can not open the camera"<>frame; //载入图像
        if (frame.empty())
        {
            //判断图像是否载入 cout<<"can not load the frame"<

你可能感兴趣的:(双目摄像头)