-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKeypoint.hpp
40 lines (33 loc) · 1.24 KB
/
Keypoint.hpp
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
/****************************************************************
***** *****
***** Name: Keypoint.hpp *****
***** Ver.: 1.00 *****
***** Date: 2016-03-17 *****
***** Auth: Kevin Rueter *****
***** University of Osnabrueck *****
***** Germany *****
***** Func: representaion of a keypoint from visp tracker *****
***** *****
******************************************************************/
#ifndef VISP_EXAMPLES_KEYPOINT_H
#define VISP_EXAMPLES_KEYPOINT_H
#include <visp3/core/vpPoint.h>
class Keypoint {
public:
Keypoint(int id, vpPoint point);
Keypoint(int id, double x, double y, double z);
~Keypoint();
vpPoint getPoint();
double getX();
double getY();
double getZ();
int getID();
void setPoint(vpPoint point);
void setX(const double x);
void setY(const double x);
void setZ(const double x);
private:
vpPoint point;
int id;
};
#endif //VISP_EXAMPLES_KEYPOINT_H