Illustrative Line Visualization
Implementation of the method by Everts et al. for visualizing dense line data.
src
mainwindow.h
1
#ifndef MAINWINDOW_H
2
#define MAINWINDOW_H
3
4
#include "glwidget.h"
5
#include "trackfile.h"
6
7
#include <QMainWindow>
8
#include <QTimer>
9
10
namespace
Ui
{
11
class
MainWindow
;
12
}
13
17
class
MainWindow
:
public
QMainWindow
18
{
19
Q_OBJECT
20
21
public
:
26
explicit
MainWindow
(QWidget *parent = 0);
27
~
MainWindow
();
28
29
protected
slots:
33
void
load();
34
35
protected
:
40
int
getMaximumSamples();
41
42
private
:
43
Ui::MainWindow *ui;
44
45
GLWidget
* glWidget;
46
};
47
48
#endif // MAINWINDOW_H
Ui
Definition:
mainwindow.h:10
MainWindow
The main window of the application.
Definition:
mainwindow.h:17
GLWidget
Widget encapsulating the OpenGL context.
Definition:
glwidget.h:21
Generated by
1.8.13