ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

pcl教程(六)点云映射

2021-09-18 17:02:47  阅读:239  来源: 互联网

标签:映射 values coefficients pcl 点云 PointCloud cloud proj



void Cvisualization::ShowCloud5()
{
    pcl::PointCloud<pcl::PointXYZ>::Ptr cloud(new pcl::PointCloud<pcl::PointXYZ>);
    pcl::PointCloud<pcl::PointXYZ>::Ptr cloud_projected(new pcl::PointCloud<pcl::PointXYZ>);


    pcl::PCDReader reader;
    // Replace the path below with the path where you saved your file
    reader.read<pcl::PointXYZ>("E:/ai/pcltest/table_scene_lms400.pcd", *cloud);

    // Create a set of planar coefficients with X=Y=0,Z=1 创建一组平面系数
    pcl::ModelCoefficients::Ptr coefficients(new pcl::ModelCoefficients());
    coefficients->values.resize(4);//values是一个定义的实数型vector 作用???
    coefficients->values[0] = coefficients->values[1] = 0;
    coefficients->values[2] = 1;
    coefficients->values[3] = 0;

    // Create the filtering object
    pcl::ProjectInliers<pcl::PointXYZ> proj;//创建 参数模型投影对象
    proj.setModelType(pcl::SACMODEL_CYLINDER);//SAC 应该是Sampling Consensus 采样一致性 选择SAC中的平面模型
    proj.setInputCloud(cloud);//同时初始化input_和indices_
    proj.setModelCoefficients(coefficients);//设置模型参数
    proj.filter(*cloud_projected);


    pcl::PLYWriter write;
    write.write<pcl::PointXYZ>("E:/ai/pcltest/pm_map_table_plane.ply", *cloud_projected);




}


标签:映射,values,coefficients,pcl,点云,PointCloud,cloud,proj
来源: https://blog.csdn.net/qq_40164094/article/details/120370532

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有