使用passthrough过滤器

本文介绍如何在点云处理中应用Passthrough过滤器。通过创建passthrough.cpp文件,定义点云对象,设置过滤字段如'z'及过滤范围,过滤掉指定字段值不在用户设定区间的点。在完成代码编写并编译后,运行程序显示过滤后的点云效果。
摘要由CSDN通过智能技术生成

沿指定维度执行简单的过滤——即截断在给定用户范围之内或之外的值。

源码:
首先创建一个passthrough.cpp文件

 1#include <iostream>
 2#include <pcl/point_types.h>
 3#include <pcl/filters/passthrough.h>
 4
 5int
 6 main ()
 7{
 8  pcl::PointCloud<pcl::PointXYZ>::Ptr cloud (new pcl::PointCloud<pcl::PointXYZ>);
 9  pcl::PointCloud<pcl::PointXYZ>::Ptr cloud_filtered (new pcl::PointCloud<pcl::PointXYZ>);
10
11  // Fill in the cloud data
12  cloud->width  = 5;
13  cloud->height = 1;
14  cloud->points.resize (cloud->width * cloud->height);
15
16  for (auto& point: *cloud)
17  {
18    point.x = 1024 * rand () / (RAND_MAX + 1.0f);
19    point.y = 1024 * rand () / (RAND_MAX + 1.0f);
20    point.z = 1024 * rand () / (RAND_MAX + 1.0f);
21  }
22
23  std::cerr << "Cloud before filtering: " << std::endl;
24  for (const auto& point: *cloud)
25    std::cerr << "    
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

目标成为slam大神

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值
>