ProjectedTextures
Prototype software for spacial augmented reality applications.
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Macros
FiducialTrackerWidget.h
Go to the documentation of this file.
1 #ifndef FIDUCIALTRACKERWIDGET_H
2 #define FIDUCIALTRACKERWIDGET_H
3 
4 #include <QWidget>
5 #include "ui_FiducialTrackerWidget.h"
6 #include "FiducialTracker.h"
7 
11 class FiducialTrackerWidget : public QWidget
12 {
13  Q_OBJECT
14 
15 public:
16  FiducialTrackerWidget(FiducialTracker *tracker, QWidget *parent = 0);
18 
19 private:
20  Ui::FiducialTrackerWidget ui;
21 
22 public slots:
23  void setNumDetectedMarkers(int num);
24  void setFps(int fps);
26 };
27 
28 #endif // FIDUCIALTRACKERWIDGET_H