diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2015-10-30 09:01:32 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2015-10-30 09:01:32 +0100 |
commit | d785d3616500d5846ac8c5f5a6347da832a593b4 (patch) | |
tree | ac670a125c5b880ad7e4b4f24a8635da4e66f0da /tracker-pt/ftnoir_tracker_pt.h | |
parent | 232c2ba8aca7900eaa950c48813ddfaca8a749a8 (diff) | |
parent | 9b736d361bcde7a2ddaf3fe54b471c0e658e94f4 (diff) |
Merge branch 'unstable' into trackhat
* unstable:
cmake: cleanup hydra
rename gui directory
move to subdirectory-based build system
cmake: switch to GNU CC 5.2.0 in mingw-w64 toolchain file
rift-080: forgot ovr_Initialize()
rift 025: fix name
Diffstat (limited to 'tracker-pt/ftnoir_tracker_pt.h')
-rw-r--r-- | tracker-pt/ftnoir_tracker_pt.h | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/tracker-pt/ftnoir_tracker_pt.h b/tracker-pt/ftnoir_tracker_pt.h new file mode 100644 index 00000000..f73d106b --- /dev/null +++ b/tracker-pt/ftnoir_tracker_pt.h @@ -0,0 +1,86 @@ +/* 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 "opentrack/plugin-api.hpp" +#include "ftnoir_tracker_pt_settings.h" +#include "camera.h" +#include "point_extractor.h" +#include "point_tracker.h" +#include "pt_video_widget.h" +#include "opentrack-compat/timer.hpp" +#include "opentrack/opencv-camera-dialog.hpp" + +#include <QThread> +#include <QMutex> +#include <QMutexLocker> +#include <QTime> +#include <atomic> +#include <memory> +#include <vector> + +class TrackerDialog_PT; + +//----------------------------------------------------------------------------- +// Constantly processes the tracking chain in a separate thread +class Tracker_PT : public QThread, public ITracker +{ + Q_OBJECT + friend class camera_dialog<Tracker_PT>; + friend class TrackerDialog_PT; +public: + Tracker_PT(); + ~Tracker_PT() override; + void start_tracker(QFrame* parent_window) override; + void data(double* data) override; + + Affine pose() { QMutexLocker lock(&mutex); return point_tracker.pose(); } + int get_n_points() { QMutexLocker lock(&mutex); return point_extractor.get_points().size(); } + bool get_cam_info(CamInfo* info) { QMutexLocker lock(&camera_mtx); return camera.get_info(*info); } +public slots: + void apply_settings(); +protected: + void run() override; +private: + QMutex mutex; + // thread commands + enum Command { + ABORT = 1<<0 + }; + void set_command(Command command); + void reset_command(Command command); + + bool get_focal_length(float &ret); + + volatile int commands; + + QMutex camera_mtx; + CVCamera camera; + PointExtractor point_extractor; + PointTracker point_tracker; + + PTVideoWidget* video_widget; + QFrame* video_frame; + + settings_pt s; + Timer time; + + volatile bool ever_success; + + static constexpr double rad2deg = 180.0/3.14159265; + static constexpr double deg2rad = 3.14159265/180.0; +}; + +class TrackerDll : public Metadata +{ + QString name() { return QString("PointTracker 1.1"); } + QIcon icon() { return QIcon(":/Resources/Logo_IR.png"); } +}; + +#endif // FTNOIR_TRACKER_PT_H |