1 Star 0 Fork 4

努力努力再努力r/StereoVision

forked from zixiao_bios/StereoVision 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
recordProcessing.cpp 898 Bytes
一键复制 编辑 原始数据 按行查看 历史
#include <iostream>
#include <opencv2/highgui.hpp>
#include <opencv2/calib3d.hpp>
#include "include/SingleCameraOpt.h"
#include "include/DoubleCameraOpt.h"
#include <thread>
using namespace std;
using namespace cv;
string CAMERA_NAME[2] = {"camera1", "camera2"};
string path = "../capture_data/record2/camera1&camera2/";
int main(){
DoubleCameraOpt stereoCom(path, CAMERA_NAME);
stereoCom.autoCalcDisp = true;
Mat frame[2], disp[2], rect;
int key;
while (true) {
stereoCom.getNewFrame(frame, false);
stereoCom.getLastDispShow(disp);
stereoCom.getRectifiedView(rect);
imshow("dispLeft", disp[0]);
imshow("dispRight", disp[1]);
imshow("show", rect);
// imshow("left", frame[0]);
// imshow("right", frame[1]);
key = waitKey(1);
if (key == 27) {
break;
}
}
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/zhang1079/computer-vision.git
git@gitee.com:zhang1079/computer-vision.git
zhang1079
computer-vision
StereoVision
master

搜索帮助