-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTracker.hpp
65 lines (55 loc) · 2.05 KB
/
Tracker.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
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
/****************************************************************
***** *****
***** Name: Tracker.hpp *****
***** Ver.: 1.00 *****
***** Date: 2016-03-11 *****
***** Auth: Kevin Rueter *****
***** University of Osnabrueck *****
***** Germany *****
***** Func: implements a tracker based on Visp *****
***** *****
******************************************************************/
#ifndef VISP_EXAMPLES_LINETRACKER_H
#define VISP_EXAMPLES_LINETRACKER_H
#include <vector>
#include <openni2/OpenNI.h>
#include <visp3/core/vpConfig.h>
#ifdef VISP_HAVE_MODULE_SENSOR
#include <visp3/sensor/vpOpenCVGrabber.h>
#endif
#include <visp3/klt/vpKltOpencv.h>
#include <visp3/blob/vpDot2.h>
#include <visp3/gui/vpDisplayGDI.h>
#include <visp3/gui/vpDisplayOpenCV.h>
#include <visp3/gui/vpDisplayX.h>
#include <visp3/me/vpMeLine.h>
#include <visp3/me/vpMeEllipse.h>
#include <visp3/core/vpPixelMeterConversion.h>
#include <visp3/vision/vpPose.h>
#include "Keypoint.hpp"
using namespace std;
using namespace openni;
class Tracker {
public:
Tracker();
~Tracker();
int initKeypointTrack(cv::Mat frame);
void keypointTrack(cv::Mat frame);
int trackPoints();
vector<Keypoint> ransacFinding(vector<Keypoint> features);
vector<Keypoint> findPointsInLevel(vector<Keypoint> bestlevel, vector<Keypoint> features);
bool computePose(vector<Keypoint>& point, vpHomogeneousMatrix &cMo);
vector<unsigned long> drawSamples(unsigned long size, int n);
//int keypointTrackTest();
private:
//vpImage<unsigned char> I;
//cv::VideoCapture g;
//cv::Mat frame;
vpKltOpencv m_tracker;
bool initTracking;
bool initPose;
float worldX;
float worldY;
float worldZ;
};
#endif //VISP_EXAMPLES_LINETRACKER_H