双目视差生成点云图像

代码如下:

#include <opencv2/opencv.hpp>
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <string>
#include <Eigen/Core>
#include <pangolin/pangolin.h>
#include <unistd.h>
#include <pcl/io/pcd_io.h>

using namespace std;
using namespace Eigen;

// 文件路径,如果不对,请调整
string left_file = "/home/lgl/project/第四讲习题/作业题/双目视差的使用/left.png";
string right_file = "/home/lgl/project/第四讲习题/作业题/双目视差的使用/right.png";
string disparity_file = "/home/lgl/project/第四讲习题/作业题/双目视差的使用/disparity.png";

// 在panglin中画图,已写好,无需调整
void showPointCloud(const vector<Vector4d, Eigen::aligned_allocator<Vector4d>> &pointcloud);

int main(int argc, char **argv) {

    // 内参
    double fx = 718.856, fy = 718.856, cx = 607.1928, cy = 185.2157;
    // 间距
    double b = 0.573;  // (注意此处的间距为双目相机左右光圈的间距)

    // 读取图像
    cv::Mat left = cv::imread(left_file, 0);
    cv::Mat right = cv::imread(right_file, 0);
    cv::Mat disparity = cv::imread(disparity_file, 0); // disparty 为CV_8U,单位为像素
    if(left.data)
        cout<<"loaded left.png"<<endl;
    cv::imshow("left",left);
    cv::imshow("right",right);
    cv::imshow("disparity",disparity);
    cv::waitKey(0);
    cv::destroyAllWindows();

    // 生成点云
    vector<Vector4d, Eigen::aligned_allocator<Vector4d>> pointcloud;

    // TODO 根据双目模型计算点云
    // 如果你的机器慢,请把后面的v++和u++改成v+=2, u+=2
    for (int v = 0; v < left.rows; v++)
        for (int u = 0; u < left.cols; u++) {

            Vector4d point(0, 0, 0, left.at<uchar>(v, u) / 255.0); // 前三维为xyz,第四维为颜色

            // start your code here (~6 lines)
            // 根据双目模型计算 point 的位置
            unsigned int d=disparity.ptr<unsigned short>(v)[u];
            if(d==0)
            {
                cout<<"d==0"<<endl;
                continue;
            }
            point[2]=(fx*b*1000)/d;
            point[1]=(v-cy)*point[2]/fy;
            point[0]=(u-cx)*point[2]/fx;
            cout<<"point = [ "<<point[0]<<" "<<point[1]<<" "<<point[2]<<" "<<point[3]<<" ]"<<endl;
            pointcloud.push_back(point);
            // end  your code here
        }

    cout<<"点云共有 : "<<pointcloud.size()<<"个点"<<endl;
    // 画出点云
    showPointCloud(pointcloud);
    return 0;
}

void showPointCloud(const vector<Vector4d, Eigen::aligned_allocator<Vector4d>> &pointcloud) {

    if (pointcloud.empty()) {
        cerr << "Point cloud is empty!" << endl;
        return;
    }

    pangolin::CreateWindowAndBind("Point Cloud Viewer", 1024, 768);
    glEnable(GL_DEPTH_TEST);
    glEnable(GL_BLEND);
    glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);

    pangolin::OpenGlRenderState s_cam(
            pangolin::ProjectionMatrix(1024, 768, 500, 500, 512, 389, 0.1, 1000),
            pangolin::ModelViewLookAt(0, -0.1, -1.8, 0, 0, 0, 0.0, -1.0, 0.0)
    );

    pangolin::View &d_cam = pangolin::CreateDisplay()
            .SetBounds(0.0, 1.0, pangolin::Attach::Pix(175), 1.0, -1024.0f / 768.0f)
            .SetHandler(new pangolin::Handler3D(s_cam));

    while (pangolin::ShouldQuit() == false) {
        glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);

        d_cam.Activate(s_cam);
        glClearColor(1.0f, 1.0f, 1.0f, 1.0f);

        glPointSize(2);
        glBegin(GL_POINTS);
        for (auto &p: pointcloud) {
            glColor3f(p[3], p[3], p[3]);
            glVertex3d(p[0], p[1], p[2]);
        }
        glEnd();
        pangolin::FinishFrame();
        usleep(5000);   // sleep 5 ms
    }
    return ;
}
  • 4
    点赞
  • 68
    收藏
    觉得还不错? 一键收藏
  • 9
    评论
双目视差是指通过两个摄像头或相机获取的两张图像之间的视差信息,用于计算场景中物体的深度信息。在Matlab中,可以使用Computer Vision Toolbox提供的函数来实现双目视差计算和生成点云。 首先,你需要加载左右两个相机的图像,并进行预处理(例如灰度化、去畸变等)。然后,可以使用`disparity`函数来计算视差图像,该函数会返回每个像素的视差值。 ```matlab leftImage = imread('left.png'); rightImage = imread('right.png'); % 预处理图像(例如灰度化、去畸变等) disparityMap = disparity(rgb2gray(leftImage), rgb2gray(rightImage)); ``` 接下来,你可以使用`pointCloud`函数将视差图换为点云。该函数需要提供相机的内参矩阵和基线长度等参数。 ```matlab fx = ...; % x方向的焦距 fy = ...; % y方向的焦距 cx = ...; % x方向的光心坐标 cy = ...; % y方向的光心坐标 baseline = ...; % 基线长度 cameraParams = cameraParameters('IntrinsicMatrix', [fx, 0, cx; 0, fy, cy; 0, 0, 1]); ptCloud = reconstructScene(disparityMap, cameraParams, baseline); ``` 现在,你可以对生成点云进行进一步处理或可视化。例如,你可以使用`pcshow`函数来显示点云。 ```matlab pcshow(ptCloud); xlabel('X'); ylabel('Y'); zlabel('Z'); ``` 这样,你就可以在Matlab中实现双目视差计算和点云生成了。记得根据实际情况调整相机参数和预处理步骤。同时,你还可以参考Matlab的文档和示例代码,以获取更详细的信息和更复杂的应用场景。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 9
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值