g2o
Loading...
Searching...
No Matches
sensor_segment2d_line.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
28
29#include <cassert>
30
32using namespace std;
33using namespace Eigen;
34
35namespace g2o {
36
40
43 e->setMeasurement(e->measurement() + n);
44 e->setInformation(information());
45}
46
48 if (!_robotPoseObject) return false;
49
50 assert(to && to->vertex());
51 VertexType* v = to->vertex();
52
53 Vector2d p1, p2;
54 SE2 iRobot = _robotPoseObject->vertex()->estimate().inverse();
55 p1 = iRobot * v->estimateP1();
56 p2 = iRobot * v->estimateP2();
57
58 Vector3d vp1(p1.x(), p1.y(), 0.);
59 Vector3d vp2(p2.x(), p2.y(), 0.);
60 Vector3d cp = vp1.cross(vp2); // visibility check
61 if (cp[2] < 0) return false;
62
63 int circleClip = clipSegmentCircle(p1, p2, sqrt(_maxRange2));
64 bool clip1 = false, clip2 = false;
65 switch (circleClip) {
66 case -1:
67 return false;
68 case 0:
69 clip1 = true;
70 break;
71 case 1:
72 clip2 = true;
73 break;
74 case 3:
75 clip1 = true;
76 clip2 = true;
77 break;
78 default:;
79 }
80
81 int fovClip = clipSegmentFov(p1, p2, -_fov, +_fov);
82 switch (fovClip) {
83 case -1:
84 return false;
85 case 0:
86 clip1 = true;
87 break;
88 case 1:
89 clip2 = true;
90 break;
91 case 3:
92 clip1 = true;
93 clip2 = true;
94 break;
95 default:;
96 }
97 if (clip1 && clip2) // only if both endpoints have been clipped do something
98 return true;
99 // if all these checks went well, we set the point
100 return false;
101}
102
105 RobotType* r = dynamic_cast<RobotType*>(robot());
106 std::list<PoseObject*>::reverse_iterator it = r->trajectory().rbegin();
107 int count = 0;
108 while (it != r->trajectory().rend() && count < 1) {
110 ++it;
111 count++;
112 }
113 for (std::set<BaseWorldObject*>::iterator it = world()->objects().begin();
114 it != world()->objects().end(); ++it) {
115 WorldObjectType* o = dynamic_cast<WorldObjectType*>(*it);
116 if (o && isVisible(o)) {
117 EdgeType* e = mkEdge(o);
118 if (e && graph()) {
119 e->setMeasurementFromState();
120 addNoise(e);
121 graph()->addEdge(e);
122 }
123 }
124 }
125}
126
127} // namespace g2o
internal::BaseEdgeTraits< D >::ErrorVector ErrorVector
Definition base_edge.h:90
OptimizableGraph * graph() const
Definition simulator.cpp:76
World * world() const
Definition simulator.cpp:71
BaseRobot * robot()
Definition simulator.h:162
GaussianSampler< typename EdgeType::ErrorVector, InformationType > _sampler
Definition simulator.h:298
SampleType generateSample()
return a sample of the Gaussian distribution
Definition sampler.h:63
represent SE2
Definition se2.h:43
SE2 inverse() const
invert :-)
Definition se2.h:83
EIGEN_MAKE_ALIGNED_OPERATOR_NEW SensorSegment2DLine(const std::string &name_)
bool isVisible(WorldObjectType *to)
virtual void addNoise(EdgeType *e)
std::set< BaseWorldObject * > & objects()
Definition simulator.h:115
Definition jet.h:938
int clipSegmentCircle(Eigen::Vector2d &p1, Eigen::Vector2d &p2, double r)
Definition simutils.cpp:37
int clipSegmentFov(Eigen::Vector2d &p1, Eigen::Vector2d &p2, double min, double max)
Definition simutils.cpp:107
WorldObject< VertexSegment2D > WorldObjectSegment2D
Robot< WorldObjectSE2 > Robot2D
Definition jet.h:876
virtual bool addEdge(HyperGraph::Edge *e)