深度图像(6)

深度图像(6),第1张

深度图像(6)

对三维信息的描述,除了点云的直接描述外,常见的RGB-D相机获取的深度影像也是目前重要的三维信息描述方式。

创建点云对应的深度图像:

//头文件
#include 

//设置观测弧度间隔、最大水平观测范围、最大垂直观测范围
float angularResolution = (float)(1.0f * (M_PI / 180.0f));
float maxAngleWidth = (float)(360.0f * (M_PI / 180.0f));
float maxAngleHeight = (float)(180.0f * (M_PI / 180.0f));

//设置采集位置
Eigen::Affine3f sensorPose = (Eigen::Affine3f)Eigen::Translation3f(0.0f,0.0f,0.0f);
//设置深度坐标系
pcl::RangeImage::Coordinateframe coordinate_frame = pcl::RangeImage::CAMERA_frame;
float noiseLevel = 0.00;
float minRange = 0.0f;
int borderSize = 1;
//声明深度图像
pcl::RangeImage range_image;
range_image.createFromPointCloud(cloud,angularResolution,maxAngleWidth,maxAngleHeight,sensorPose,coordinate_frame,noiseLevel,minRange,borderSize);

深度图像提取边界:

pcl::RangeImageBorderExtractor border_extractor(&range_image);
pcl::PointCloud border_descriptions;
border_extractor.compute(border_descriptions);

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5634693.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存