summaryrefslogtreecommitdiffhomepage
path: root/FTNoIR_Tracker_PT/ftnoir_tracker_pt.h
blob: 6b6af060a893696f405333cdfb61fa57a3839135 (plain)
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
/* Copyright (c) 2012 Patrick Ruoff
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 */

#ifndef FTNOIR_TRACKER_PT_H
#define FTNOIR_TRACKER_PT_H

#include "..\ftnoir_tracker_base\ftnoir_tracker_base.h"
#include "ftnoir_tracker_pt_settings.h"
#include "camera.h"
#include "point_extractor.h"
#include "point_tracker.h"
#include "video_widget.h"

#include <QThread>
#include <QMutex>
#include <QTime>
#include <opencv2/opencv.hpp>

//-----------------------------------------------------------------------------
class Tracker : public ITracker, QThread
{
public:
	Tracker();
	~Tracker();

	void CenterTracker();
	

	// ITracker interface
	void Initialize(QFrame *videoframe);
	void StartTracker(HWND parent_window);
	void StopTracker(bool exit);
	bool GiveHeadPoseData(THeadPoseData *data);
	void refreshVideo();

	void apply(const TrackerSettings& settings);
	void apply_without_camindex(const TrackerSettings& settings); // changing the camindex is expensive and not suitable for realtime editing
	void run();

protected:	
	FrameTrafo X_CH_0; // for centering

	QMutex mutex;
	cv::Mat frame;	// the output frame for display

	enum Command {
		ABORT = 1<<0,
		PAUSE = 1<<1
	};
	void set_command(Command command);
	void reset_command(Command command);
	int commands;
	
	Camera camera;
	PointExtractor point_extractor;
	PointTracker point_tracker;
	FrameTrafo X_MH;
	bool draw_frame;
	int sleep_time;
	
	long frame_count;

	VideoWidget* video_widget;
	QTime time;
};

//-----------------------------------------------------------------------------
class TrackerDll : public ITrackerDll
{
	// ITrackerDll interface
	void Initialize() {}
	void getFullName(QString *strToBeFilled);
	void getShortName(QString *strToBeFilled);
	void getDescription(QString *strToBeFilled);
	void getIcon(QIcon *icon);
};

#endif // FTNOIR_TRACKER_PT_H