point_cloud_assembler.cpp
Go to the documentation of this file.
1 /*********************************************************************
2 * Software License Agreement (BSD License)
3 *
4 * Copyright (c) 2008, Willow Garage, Inc.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 *
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above
14 * copyright notice, this list of conditions and the following
15 * disclaimer in the documentation and/or other materials provided
16 * with the distribution.
17 * * Neither the name of the Willow Garage nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
27 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
29 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
31 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32 * POSSIBILITY OF SUCH DAMAGE.
33 *********************************************************************/
34 
35 
37 
38 
39 using namespace std ;
40 
41 namespace laser_assembler
42 {
43 
50 class PointCloudAssembler : public BaseAssembler<sensor_msgs::PointCloud>
51 {
52 public:
53  PointCloudAssembler() : BaseAssembler<sensor_msgs::PointCloud>("max_clouds")
54  {
55 
56  }
57 
59  {
60 
61  }
62 
63  unsigned int GetPointsInScan(const sensor_msgs::PointCloud& scan)
64  {
65  return (scan.points.size ());
66  }
67 
68  void ConvertToCloud(const string& fixed_frame_id, const sensor_msgs::PointCloud& scan_in, sensor_msgs::PointCloud& cloud_out)
69  {
70  tf_->transformPointCloud(fixed_frame_id, scan_in, cloud_out) ;
71  return ;
72  }
73 
74 private:
75 
76 };
77 
78 }
79 
80 using namespace laser_assembler ;
81 
82 int main(int argc, char **argv)
83 {
84  ros::init(argc, argv, "point_cloud_assembler");
85  PointCloudAssembler pc_assembler;
86  pc_assembler.start("cloud");
87  ros::spin();
88 
89  return 0;
90 }
int main(int argc, char **argv)
unsigned int GetPointsInScan(const sensor_msgs::PointCloud &scan)
Returns the number of points in the current scan.
ROSCPP_DECL void init(int &argc, char **argv, const std::string &name, uint32_t options=0)
ROSCPP_DECL void spin(Spinner &spinner)
void start(const std::string &in_topic_name)
Tells the assembler to start listening to input data It is possible that a derived class needs to ini...
void ConvertToCloud(const string &fixed_frame_id, const sensor_msgs::PointCloud &scan_in, sensor_msgs::PointCloud &cloud_out)
Maintains a history of incremental point clouds (usually from laser scans) and generates a point clou...
Maintains a history of point clouds and generates an aggregate point cloud upon request.


laser_assembler
Author(s): Vijay Pradeep
autogenerated on Thu Jun 27 2019 19:56:21