forked from AntonioRedondo/ImageFeatureDetector
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwindowDo4.h
More file actions
37 lines (28 loc) · 728 Bytes
/
Copy pathwindowDo4.h
File metadata and controls
37 lines (28 loc) · 728 Bytes
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
/*
* 2010-2015 (C) Antonio Redondo
* http://antonioredondo.com
* https://github.com/AntonioRedondo/ImageFeatureDetector
*
* Code under the terms of the GNU General Public License v3.
*
*/
#ifndef WINDOWDO4_H
#define WINDOWDO4_H
#include "ui_windowDo4.h"
#include "windowImage.h"
using namespace std;
class WindowDo4 : public QWidget, Ui::windowDo4 {
Q_OBJECT
public:
WindowDo4(QString windowTitle, WindowImage* harrisImage, WindowImage* fastImage, WindowImage* siftImage, WindowImage* surfImage);
private:
void changeEvent(QEvent* event);
WindowImage* mHarrisImage;
WindowImage* mFastImage;
WindowImage* mSiftImage;
WindowImage* mSurfImage;
QTimer* mTimer;
private slots:
void zoomBestFit();
};
#endif