blob: 5c298ca59e022d06400363cd7173f152bce088b1 (
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
|
#include "ftnoir_tracker_pt.h"
#include "api/plugin-api.hpp"
#include "camera.h"
#include "frame.hpp"
#include "point_extractor.h"
#include "ftnoir_tracker_pt_dialog.h"
#include "pt-api.hpp"
#include <memory>
static const QString module_name = "tracker-pt";
using namespace pt_module;
struct pt_module_traits final : pt_runtime_traits
{
pointer<pt_camera> make_camera() const override
{
return pointer<pt_camera>(new Camera(module_name));
}
pointer<pt_point_extractor> make_point_extractor() const override
{
return pointer<pt_point_extractor>(new PointExtractor(module_name));
}
QString get_module_name() const override
{
return module_name;
}
pointer<pt_frame> make_frame() const override
{
return pointer<pt_frame>(new Frame);
}
pointer<pt_preview> make_preview(int w, int h) const override
{
return pointer<pt_preview>(new Preview(w, h));
}
};
struct tracker_pt : Tracker_PT
{
tracker_pt() : Tracker_PT(pointer<pt_runtime_traits>(new pt_module_traits))
{
}
};
struct dialog_pt : TrackerDialog_PT
{
dialog_pt();
};
class metadata_pt : public Metadata
{
QString name() { return _("PointTracker 1.1"); }
QIcon icon() { return QIcon(":/Resources/Logo_IR.png"); }
};
// ns pt_module
using namespace pt_module;
dialog_pt::dialog_pt() : TrackerDialog_PT(module_name) {}
OPENTRACK_DECLARE_TRACKER(tracker_pt, dialog_pt, metadata_pt)
|