blob: 861e0ff9c7c3c1feab1beabe554cf8ba4ea9e30c (
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
|
/* 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.
*/
#pragma once
#include "tracker-easy-api.h"
#include "tracker-easy.h"
#include "ui_tracker-easy-settings.h"
#include "cv/translation-calibrator.hpp"
#include "video/video-widget.hpp"
#include <QTimer>
#include <QMutex>
namespace EasyTracker
{
class Dialog : public ITrackerDialog
{
Q_OBJECT
public:
Dialog();
void register_tracker(ITracker *tracker) override;
void unregister_tracker() override;
void save();
public slots:
void doOK();
void doCancel();
void startstop_trans_calib(bool start);
void trans_calib_step();
void poll_tracker_info_impl();
void set_camera_settings_available(const QString& camera_name);
void show_camera_settings();
signals:
void poll_tracker_info();
protected:
QString threshold_display_text(int threshold_value);
Settings s;
Tracker* tracker;
QTimer timer, calib_timer;
TranslationCalibrator trans_calib;
QMutex calibrator_mutex;
Ui::UICPTClientControls ui;
};
}
|