TAMSVIZ
Visualization and annotation tool for ROS
laserscan.h
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #pragma once
5 
6 #include "frame.h"
7 
8 #include "../core/topic.h"
9 #include "../core/watcher.h"
10 #include "../render/mesh.h"
11 #include "../scene/mesh.h"
12 
13 #include <sensor_msgs/LaserScan.h>
14 #include <sensor_msgs/PointCloud.h>
15 
16 #include <laser_geometry/laser_geometry.h>
17 
19  std::shared_ptr<MeshRenderer> _mesh_renderer;
20  std::shared_ptr<Material> _material = std::make_shared<Material>();
21  std::shared_ptr<laser_geometry::LaserProjection> _projector =
22  std::make_shared<laser_geometry::LaserProjection>();
23  Watcher _watcher;
24 
25 public:
26  PROPERTY(double, pointRadius, 0.05, min = 0.0);
27  PROPERTY(Color4, color, Color4(1, 1, 1, 1));
28  PROPERTY(TopicProperty<sensor_msgs::LaserScan>, topic, "");
29  virtual void renderSync(const RenderSyncContext &context) override;
30  LaserScanDisplay() {}
31 };
32 DECLARE_TYPE_C(LaserScanDisplay, MeshDisplayBase, Sensor);
Definition: watcher.h:8