如何使用PCL从kinect过滤点云数据

时间:2012-05-25 03:41:03

标签: kinect point-cloud-library

我现在正在使用PCL和kinect,回调函数如下所示:

我想做一些过滤,但我不能直接在回调函数中访问“cloud”,因为它是常量类型,所以我将它复制到“cloud2”以查看它是否有效。

结果是编译传递但运行时错误,任何人都帮帮我?

class SimpleOpenNIProcessor
{
public:
    pcl::PointCloud<pcl::PointXYZ>::Ptr cloud2;
     SimpleOpenNIProcessor () : viewer ("PCL OpenNI Viewer") {}
     void cloud_cb_ (const pcl::PointCloud<pcl::PointXYZ>::ConstPtr &cloud)
  {

    *(cloud2)=*(cloud);
     if (!viewer.wasStopped())
         viewer.showCloud (cloud);

  }

  void run ()
  {

    // create a new grabber for OpenNI devices
    pcl::Grabber* interface = new pcl::OpenNIGrabber();

    // make callback function from member function
    boost::function<void (const pcl::PointCloud<pcl::PointXYZ>::ConstPtr&)> f =
      boost::bind (&SimpleOpenNIProcessor::cloud_cb_, this, _1);

    // connect callback function for desired signal. In this case its a point cloud with color values
    boost::signals2::connection c = interface->registerCallback (f);

    // start receiving point clouds
    interface->start ();

    // wait until user quits program with Ctrl-C, but no busy-waiting -> sleep (1);
    while (true)
      sleep(1);

    // stop the grabber
    interface->stop ();
  }
      pcl::visualization::CloudViewer viewer;

};

int main ()
{

  SimpleOpenNIProcessor v;
  v.run ();
  return (0);
}

1 个答案:

答案 0 :(得分:4)

pcl::PointCloud<pcl::PointXYZ>::Ptr cloud2;

这只定义了cloud2,你还需要在堆上创建它,否则你将获得不良内存访问(作为它的指针)。

pcl::PointCloud<pcl::PointXYZ>::Ptr cloud2( new pcl::PointCloud<pcl::PointXYZ>());

你也不应该这样做

*cloud2 = *cloud;

这不是一个很好的复制你应该使用的方式。

pcl::copyPointCloud<PointT, PointT>(*cloud, *cloud2);

(我的上述答案也适用于你们两个都应该做!)