g2o
sensor_segment2d_pointline.cpp
Go to the documentation of this file.
1 // g2o - General Graph Optimization
2 // Copyright (C) 2011 G. Grisetti, R. Kuemmerle, 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 
29 using namespace std;
30 using namespace Eigen;
31 
32 namespace g2o{
33 
34  SensorSegment2DPointLine::SensorSegment2DPointLine(const std::string& name_): BinarySensor<Robot2D, EdgeSE2Segment2DPointLine, WorldObjectSegment2D>(name_) {}
35 
38  e->setMeasurement(e->measurement()+n);
40  }
41 
43  if (! _robotPoseObject)
44  return false;
45 
46  assert(to && to->vertex());
47  VertexType* v=to->vertex();
48 
49  Vector2d p1, p2;
50  SE2 iRobot=_robotPoseObject->vertex()->estimate().inverse();
51  p1 = iRobot * v->estimateP1();
52  p2 = iRobot * v->estimateP2();
53 
54  Vector3d vp1(p1.x(), p1.y(), 0.);
55  Vector3d vp2(p2.x(), p2.y(), 0.);
56  Vector3d cp=vp1.cross(vp2); // visibility check
57  if (cp[2]<0)
58  return false;
59 
60  int circleClip = clipSegmentCircle(p1,p2,sqrt(_maxRange2));
61  bool clip1=false, clip2=false;
62  switch(circleClip){
63  case -1:
64  return false;
65  case 0:
66  clip1 = true;
67  break;
68  case 1:
69  clip2 = true;
70  break;
71  case 3:
72  clip1 = true;
73  clip2 = true;
74  break;
75  default:;
76  }
77 
78  int fovClip=clipSegmentFov(p1,p2,-_fov, +_fov);
79  switch(fovClip){
80  case -1:
81  return false;
82  case 0:
83  clip1 = true;
84  break;
85  case 1:
86  clip2 = true;
87  break;
88  case 3:
89  clip1 = true;
90  clip2 = true;
91  break;
92  default:;
93  }
94  if ((clip1 && !clip2)) {
95  _visiblePoint = 1;
96  return true;
97  }
98  if ((!clip1 && clip2)) {
99  _visiblePoint = 0;
100  return true;
101  }
102  return false;
103  }
104 
105 
108  RobotType* r= dynamic_cast<RobotType*>(robot());
109  std::list<PoseObject*>::reverse_iterator it=r->trajectory().rbegin();
110  int count = 0;
111  while (it!=r->trajectory().rend() && count < 1){
112  if (!_robotPoseObject)
113  _robotPoseObject = *it;
114  it++;
115  count++;
116  }
117  for (std::set<BaseWorldObject*>::iterator it=world()->objects().begin(); it!=world()->objects().end(); it++){
118  WorldObjectType* o=dynamic_cast<WorldObjectType*>(*it);
119  if (o && isVisible(o)){
120  EdgeType* e=mkEdge(o);
121  if (e && graph()) {
124  addNoise(e);
125  graph()->addEdge(e);
126  }
127  }
128  }
129  }
130 
131 } // end namespace
int clipSegmentCircle(Eigen::Vector2d &p1, Eigen::Vector2d &p2, double r)
Definition: simutils.cpp:11
int clipSegmentFov(Eigen::Vector2d &p1, Eigen::Vector2d &p2, double min, double max)
Definition: simutils.cpp:82
GaussianSampler< typename EdgeType::ErrorVector, InformationType > _sampler
Definition: simulator.h:271
represent SE2
Definition: se2.h:40
SampleType generateSample()
Definition: sampler.h:67
virtual void setMeasurement(const Measurement &m)
Definition: base_edge.h:76
World * world()
Definition: simulator.cpp:69
EIGEN_STRONG_INLINE void setInformation(const InformationType &information)
Definition: base_edge.h:69
TrajectoryType & trajectory()
Definition: simulator.h:119
OptimizableGraph * graph()
Definition: simulator.cpp:75
BaseRobot * robot()
Definition: simulator.h:129
std::set< BaseWorldObject * > & objects()
Definition: simulator.h:284
virtual bool addEdge(HyperGraph::Edge *e)
VertexType * vertex()
Definition: simulator.h:72
EIGEN_STRONG_INLINE const Measurement & measurement() const
accessor functions for the measurement represented by the edge
Definition: base_edge.h:75