point_cloud2_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 
38 
39 using namespace std ;
40 
41 namespace laser_assembler
42 {
43 
50 class PointCloud2Assembler : public BaseAssembler<sensor_msgs::PointCloud2>
51 {
52 public:
53  PointCloud2Assembler() : BaseAssembler<sensor_msgs::PointCloud2>("max_clouds")
54  {
55 
56  }
57 
59  {
60 
61  }
62 
63  unsigned int GetPointsInScan(const sensor_msgs::PointCloud2& scan)
64  {
65  return (scan.width * scan.height);
66  }
67 
68  void ConvertToCloud(const string& fixed_frame_id, const sensor_msgs::PointCloud2& scan_in, sensor_msgs::PointCloud& cloud_out)
69  {
70  sensor_msgs::PointCloud cloud_in;
72  tf_->transformPointCloud(fixed_frame_id, cloud_in, cloud_out) ;
73  return ;
74  }
75 
76 private:
77 
78 };
79 
80 }
81 
82 using namespace laser_assembler ;
83 
84 int main(int argc, char **argv)
85 {
86  ros::init(argc, argv, "point_cloud_assembler");
87  PointCloud2Assembler pc_assembler;
88  pc_assembler.start("cloud");
89  ros::spin();
90 
91  return 0;
92 }
Maintains a history of incremental point clouds (usually from laser scans) and generates a point clou...
ROSCPP_DECL void init(int &argc, char **argv, const std::string &name, uint32_t options=0)
static bool convertPointCloud2ToPointCloud(const sensor_msgs::PointCloud2 &input, sensor_msgs::PointCloud &output)
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::PointCloud2 &scan_in, sensor_msgs::PointCloud &cloud_out)
Maintains a history of point clouds and generates an aggregate point cloud upon request.
unsigned int GetPointsInScan(const sensor_msgs::PointCloud2 &scan)
Returns the number of points in the current scan.
int main(int argc, char **argv)


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