TAMSVIZ
Visualization and annotation tool for ROS
pointcloud.h
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #pragma once
5 
6 #include "frame.h"
7 
8 #include "../core/profiler.h"
9 #include "../core/topic.h"
10 #include "../core/watcher.h"
11 #include "../render/mesh.h"
12 #include "../scene/mesh.h"
13 
14 #include <sensor_msgs/PointCloud.h>
15 #include <sensor_msgs/PointCloud2.h>
16 
18  std::shared_ptr<MeshRenderer> _mesh_renderer;
19  std::shared_ptr<Material> _material = std::make_shared<Material>();
20  std::shared_ptr<MaterialRenderer> _material_renderer =
21  std::make_shared<MaterialRenderer>(_material);
22 
23 protected:
25  void setPointCloud(const std::shared_ptr<const Message> &message);
26 
27 public:
28  PROPERTY(double, pointSize, 1.0, min = 1.0);
29  PROPERTY(bool, pointColors, true);
30 };
32 
34  Watcher _watcher;
35 
36 public:
37  PROPERTY(TopicProperty<sensor_msgs::PointCloud>, topic, "");
38  virtual void renderSync(const RenderSyncContext &context) override;
39 };
40 DECLARE_TYPE_C(PointCloudDisplay, PointCloudDisplayBase, Sensor);
41 
43  Watcher _watcher;
44 
45 public:
46  PROPERTY(TopicProperty<sensor_msgs::PointCloud2>, topic, "");
47  virtual void renderSync(const RenderSyncContext &context) override;
48 };
49 DECLARE_TYPE_C(PointCloud2Display, PointCloudDisplayBase, Sensor);
Definition: watcher.h:8