-
Notifications
You must be signed in to change notification settings - Fork 120
/
visualizer.h
executable file
·96 lines (82 loc) · 2.27 KB
/
visualizer.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#ifndef VISUALIZER_H
#define VISUALIZER_H
#include "common.h"
#include <QMainWindow>
#include <pcl/visualization/PointCloudColorHandlerLUT.h>
#include <Annotaion.h>
namespace Ui {
class MainWindow;
}
using namespace std;
class Visualizer:public QMainWindow
{
public:
explicit Visualizer(QWidget *parent = 0);
~Visualizer();
void highlightPoint(vector<int>& slice);
void defaultColorPoint(vector<int>& slice);
void groundColorPoint(vector<int>& slice);
void pickAnnotation(double x,double y);
void createAnnotationFromSelectPoints(string type="unknown");
void typeButtonClickedProcess(string type);
void updateCloud();
protected:
Ui::MainWindow* ui;
PCLViewerPtr viewer;
string pointcloudFileName;
string annotationFileName;
/**
* @brief the loaded cloud
*/
PointCloudTPtr cloud;
/**
* @brief state of each point to identity color or selectable
*/
int* cloudLabel;
PointCloudColorHandlerLUT<PointT> colorHandler;
vector<int> last_selected_slice;
// manage annotations
boost::shared_ptr<Annotaions> annoManager;
/**
* @brief show loaded cloud and annotations
*/
void refresh();
/**
* @brief initialize UI, slot connection and something else
*/
void initialize();
/**
* @brief open cloud file
*/
void openFile();
/**
* @brief clear state before load new cloud and annotation
*/
void clear();
/**
* @brief save annotations
*/
void save();
/**
* @brief load APPLI or KITTI cloud bin file
* @param filename_
* @param cloud_
*/
void loadBinFile(string filename_, PointCloudT &cloud_);
void planeDetect();
void threshold();
private:
void AreaPickingEventProcess(const pcl::visualization::AreaPickingEvent& event);
void MouseEventProcess (const pcl::visualization::MouseEvent& event);
void KeyboardEventProcess(const pcl::visualization::KeyboardEvent& event);
// visibility
void showAnnotation();
void showAnnotation(const Annotation* anno);
void removeAnnotation();
void removeAnnotation(Annotation* anno);
// axes
vtkSmartPointer<vtkOrientationMarkerWidget> axesWidget;
// for pick
Annotation *currPickedAnnotation;
};
#endif // VISUALIZER_H