ed_sensor_integration
ray_tracer.cpp
Go to the documentation of this file.
1 #include "ray_tracer.h"
2 
3 #include <ed/entity.h>
4 #include <ed/error_context.h>
5 #include <ed/world_model.h>
6 
7 #include <geolib/Shape.h>
8 
10 
11 #include <ros/console.h>
12 
13 namespace ed_ray_tracer
14 {
15 
16 // ----------------------------------------------------------------------------------------------------
17 
19 {
20 
21 public:
22 
23  PointRenderResult() : geo::LaserRangeFinder::RenderResult(dummy_ranges_), depth_(0.0), entity_("") {}
24 
25  void renderPoint(uint /*index*/, float depth)
26  {
27  float old_depth = depth_;
28  if (old_depth == 0.0 || depth < old_depth)
29  {
30  ROS_DEBUG_STREAM("Using " << active_entity_ << " as active entity, depth from " << old_depth << " to " << depth);
31  depth_ = depth;
33  }
34  else
35  {
36  ROS_DEBUG_STREAM("Not using entity " << active_entity_);
37  }
38  }
39 
41 
43 
44  double depth_;
46 
47 };
48 
49 RayTraceResult ray_trace(const ed::WorldModel& world, const geo::Pose3D& raytrace_pose)
50 {
51  ed::ErrorContext errc("ray_trace");
52  const geo::Pose3D raytrace_pose_inv = raytrace_pose.inverse();
54 
56  lrf.setAngleLimits(-1e-3, 1e-3);
57  lrf.setNumBeams(1);
58  lrf.setRangeLimits(0, 10);
59 
60  // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
61  // Raytrace for each entity in the wm
62 
63  for(ed::WorldModel::const_iterator it = world.begin(); it != world.end(); ++it)
64  {
65  const ed::EntityConstPtr& e = *it;
66 
67  if ((!e->collision() && !e->visual()) || !e->has_pose())
68  continue;
69 
70  res.active_entity_ = e->id().str();
71  for (const auto& volume : e->volumes())
72  {
73  const std::string& name = volume.first;
74  const geo::ShapeConstPtr& shape = volume.second;
75  if (name == "on_top_of")
76  {
77  ROS_DEBUG("Raytrace on_top_of array of %s included", e->id().c_str());
79  opt.setMesh(shape->getMesh(), raytrace_pose_inv * e->pose());
80 
81  lrf.render(opt, res);
82  }
83  }
84 
85  ROS_DEBUG_STREAM("Raytracing to " << e->id() << " " << (e->collision() ? "collision" : "visual") << " mesh");
87  geo::ShapeConstPtr shape = e->collision() ? e->collision() : e->visual();
88  opt.setMesh(shape->getMesh(), raytrace_pose_inv * e->pose()); // Use mesh
89 
90  lrf.render(opt, res);
91  }
92 
93  geo::Vec3d point_sensor_frame(res.depth_, 0, 0);
94 
95  RayTraceResult result;
96 
97  if (res.entity_.empty())
98  {
99  ROS_DEBUG("Did not raytrace through any entity");
100  }
101  else
102  {
103  result.entity_id_ = res.entity_;
104  result.intersection_point_ = raytrace_pose * point_sensor_frame;
105  result.success_ = true;
106  }
107 
108  return result;
109 }
110 
111 }
112 
113 // ----------------------------------------------------------------------------------------------------
ed_ray_tracer::PointRenderResult::entity_
std::string entity_
Definition: ray_tracer.cpp:45
geo::LaserRangeFinder::setAngleLimits
void setAngleLimits(double min, double max)
std::string
std::shared_ptr
geo
geo::LaserRangeFinder::setRangeLimits
void setRangeLimits(double min, double max)
ed_ray_tracer::RayTraceResult::success_
bool success_
Definition: ray_tracer.h:20
std::vector< double >
ed_ray_tracer::PointRenderResult
Definition: ray_tracer.cpp:18
ray_tracer.h
geo::Vec3T
Shape.h
geo::Transform3T
ed::ErrorContext
geo::LaserRangeFinder::render
void render(const geo::LaserRangeFinder::RenderOptions &options, geo::LaserRangeFinder::RenderResult &res) const
ed::WorldModel::begin
const_iterator begin() const
ed::WorldModel::const_iterator
EntityIterator const_iterator
ed_ray_tracer::ray_trace
RayTraceResult ray_trace(const ed::WorldModel &world, const geo::Pose3D &raytrace_pose)
Definition: ray_tracer.cpp:49
ed_ray_tracer::RayTraceResult::intersection_point_
geo::Vector3 intersection_point_
Definition: ray_tracer.h:22
ed::EntityConstPtr
shared_ptr< const Entity > EntityConstPtr
ed::WorldModel::end
const_iterator end() const
geo::Transform3T::inverse
Transform3T inverse() const
LaserRangeFinder.h
ed_ray_tracer::PointRenderResult::depth_
double depth_
Definition: ray_tracer.cpp:44
ed_ray_tracer::RayTraceResult
Definition: ray_tracer.h:13
ed_ray_tracer::RayTraceResult::entity_id_
std::string entity_id_
Definition: ray_tracer.h:21
ed_ray_tracer::PointRenderResult::PointRenderResult
PointRenderResult()
Definition: ray_tracer.cpp:23
geo::LaserRangeFinder::setNumBeams
void setNumBeams(uint n)
geo::LaserRangeFinder::RenderOptions::setMesh
void setMesh(const geo::Mesh &mesh, const geo::Pose3D &pose)
ed::WorldModel
geo::LaserRangeFinder
ed_ray_tracer::PointRenderResult::active_entity_
std::string active_entity_
Definition: ray_tracer.cpp:42
world_model.h
ed_ray_tracer::PointRenderResult::renderPoint
void renderPoint(uint, float depth)
Definition: ray_tracer.cpp:25
geo::LaserRangeFinder::RenderOptions
ed_ray_tracer::PointRenderResult::dummy_ranges_
std::vector< double > dummy_ranges_
Definition: ray_tracer.cpp:40
std::string::empty
T empty(T... args)
entity.h
geo::LaserRangeFinder::RenderResult
error_context.h
geo::LaserRangeFinder::RenderResult::RenderResult
RenderResult(std::vector< double > &ranges_)
ed_ray_tracer
Definition: ray_tracer.cpp:13