-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrgbobserver.h
53 lines (31 loc) · 967 Bytes
/
rgbobserver.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#ifndef RGBOBSERVER_H
#define RGBOBSERVER_H
#include <QObject>
#include <log4cpp/Category.hh>
#include "Application/streamdatareceiver.h"
#include "pcl/point_cloud.h"
#include "pcl/point_types.h"
#include <chrono>
#include "simpleviewer.h"
class RgbObserver : public QObject
{
Q_OBJECT
public:
explicit RgbObserver(QObject* parent = 0);
RgbObserver(StreamDataReceiver* channel);
std::chrono::steady_clock::time_point start;
std::chrono::steady_clock::time_point end;
//SimpleViewer simpleViewer;
const pcl::PointCloud<pcl::PointXYZRGBA>::Ptr ptrCloud;
signals:
void newStreamData(const pcl::PointCloud<pcl::PointXYZRGBA>::Ptr &cloud);
public slots:
void refreshStartTime();
void update();
private:
log4cpp::Category &logger = log4cpp::Category::getInstance("ComponentLog");
pcl::PointCloud<pcl::PointXYZRGBA> cloud;
StreamDataReceiver *channel;
long meanTimeMs;
};
#endif // RGBOBSERVER_H