3D视觉学习之路——基于pcl从CAD模型中获取单视角点云

学习PCL也有将近两个月了,现在想开下博客记录一些自己的学习心得。
由于项目需要,现在需要从CAD模型中提取单视角点云。pcl提取单视角点云的函数名是renderViewTesselatedSphere,属于pcl::visualization::PCLVisualizer中的成员函数。

下面是关键代码:

/*+++++++++++++++++++++++++单视角点云获取+++++++++++++++++++++++++++++++*/
    vtkSmartPointer<vtkPolyData> polydata = vtkSmartPointer<vtkPolyData>::New();
    vtkSmartPointer<vtkSTLReader> readerQuery = vtkSmartPointer<vtkSTLReader>::New();
    //读取CAD模型
    readerQuery->SetFileName("aa.STL");
    readerQuery->Update();
    polydata = readerQuery->GetOutput();
    polydata->GetNumberOfPoints());

    //单视角点云获取
    float resx = 512;
    float resy = resx;
    std::vector<pcl::PointCloud<pcl::PointXYZ>, Eigen::aligned_allocator<pcl::PointCloud<pcl::PointXYZ> > > views_xyz;
    std::vector<Eigen::Matrix4f, Eigen::aligned_allocator<Eigen::Matrix4f> > poses;
    std::vector<float> entropies;
    pcl::visualization::PCLVisualizer vis;
    vis.addModelFromPolyData(polydata, "mesh", 0);
    vis.setRepresentationToSurfaceForAllActors();
    vis.renderViewTesselatedSphere(resx, resy, views_xyz, poses, entropies, 1, 90, 1, FALSE);
    for (int i = 0; i < views_xyz.size(); i++)
    {
        pcl::PointCloud<pcl::PointXYZ> views_cloud;
        pcl::transformPointCloud<pcl::PointXYZ>(views_xyz[i], views_cloud, poses[i]);

        std::stringstream ss;
        ss << "cloud_view_" << i << ".ply";
        pcl::io::savePLYFile(ss.str(), views_cloud);
    }



    while (!vis.wasStopped())
    {
    }

该代码实现的是从一个cad模型中获取80个视角的点云。

  • 3
    点赞
  • 25
    收藏
    觉得还不错? 一键收藏
  • 14
    评论
评论 14
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值