g2o
raw_laser.h
Go to the documentation of this file.
1 // g2o - General Graph Optimization
2 // Copyright (C) 2011 R. Kuemmerle, G. Grisetti, W. Burgard
3 // All rights reserved.
4 //
5 // Redistribution and use in source and binary forms, with or without
6 // modification, are permitted provided that the following conditions are
7 // met:
8 //
9 // * Redistributions of source code must retain the above copyright notice,
10 // this list of conditions and the following disclaimer.
11 // * Redistributions in binary form must reproduce the above copyright
12 // notice, this list of conditions and the following disclaimer in the
13 // documentation and/or other materials provided with the distribution.
14 //
15 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
16 // IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
17 // TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
18 // PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
19 // HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
21 // TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
22 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
23 // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
24 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 
27 #ifndef G2O_RAW_LASER_H
28 #define G2O_RAW_LASER_H
29 
30 #include "robot_data.h"
31 #include "laser_parameters.h"
32 #include "g2o_types_data_api.h"
33 
34 #include <vector>
35 
36 #include<Eigen/Core>
37 #include<Eigen/StdVector>
38 
39 namespace g2o {
40 
47  public:
48  typedef std::vector<Vector2D, Eigen::aligned_allocator<Vector2D> > Point2DVector;
49 
50  public:
51  RawLaser();
52  ~RawLaser();
53 
54  virtual bool write(std::ostream& os) const;
55  virtual bool read(std::istream& is);
56 
61  Point2DVector cartesian() const;
62 
64  const std::vector<double>& ranges() const { return _ranges;}
65  void setRanges(const std::vector<double>& ranges);
66 
68  const std::vector<double>& remissions() const { return _remissions;}
69  void setRemissions(const std::vector<double>& remissions);
70 
72  const LaserParameters& laserParams() const { return _laserParams;}
73  void setLaserParams(const LaserParameters& laserParams);
74 
75  protected:
76  std::vector<double> _ranges;
77  std::vector<double> _remissions;
79  };
80 
81 } // end namespace
82 
83 #endif
#define G2O_TYPES_DATA_API
std::vector< Vector2D, Eigen::aligned_allocator< Vector2D > > Point2DVector
Definition: raw_laser.h:48
std::vector< double > _ranges
Definition: raw_laser.h:76
const std::vector< double > & remissions() const
the remission measurements by the laser
Definition: raw_laser.h:68
const std::vector< double > & ranges() const
the range measurements by the laser
Definition: raw_laser.h:64
const LaserParameters & laserParams() const
the parameters of the laser
Definition: raw_laser.h:72
LaserParameters _laserParams
Definition: raw_laser.h:78
std::vector< double > _remissions
Definition: raw_laser.h:77
data recorded by the robot
Definition: robot_data.h:41
parameters for a 2D range finder
Raw laser measuerement.
Definition: raw_laser.h:46