TAMSVIZ
Visualization and annotation tool for ROS
Main Page
Classes
Files
File List
src
displays
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
17
class
PointCloudDisplayBase
:
public
MeshDisplayBase
{
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
:
24
PointCloudDisplayBase
();
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
};
31
DECLARE_TYPE(
PointCloudDisplayBase
,
MeshDisplayBase
);
32
33
class
PointCloudDisplay
:
public
PointCloudDisplayBase
{
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
42
class
PointCloud2Display
:
public
PointCloudDisplayBase
{
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);
Watcher
Definition:
watcher.h:8
PointCloudDisplay
Definition:
pointcloud.h:33
PointCloud2Display
Definition:
pointcloud.h:42
PointCloudDisplayBase
Definition:
pointcloud.h:17
RenderSyncContext
Definition:
document.h:120
TopicProperty
Definition:
topic.h:214
MeshDisplayBase
Definition:
mesh.h:12
Generated by
1.8.11