-
Notifications
You must be signed in to change notification settings - Fork 0
/
HandControl.pro
89 lines (80 loc) · 2.11 KB
/
HandControl.pro
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#-------------------------------------------------
#
# Project created by QtCreator 2010-11-14T16:45:18
#
#-------------------------------------------------
QT += core gui
TARGET = HandControl
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
webcam.cpp \
merror.cpp \
imageconvert.cpp \
exceptions.cpp \
imageprocessor.cpp \
handrecognizer.cpp \
NeuralNet/perceptron.cpp \
NeuralNet/neuralnetwork.cpp \
NeuralNet/neurallayer.cpp \
NeuralNet/continuous_perceptron.cpp \
gesturerecognizer.cpp \
gesture.cpp \
gesturemoveleft.cpp \
gesturemoveright.cpp \
xfunc.cpp \
gesturemoveup.cpp \
gesturemovedown.cpp \
onscreendisplayform.cpp \
utils.cpp \
NeuralNet/distributedneurallayer.cpp \
NeuralNet/distributedneuralnetwork.cpp \
kalmanfilter.cpp \
colorimage.cpp \
grayscaleimage.cpp \
color.cpp \
NeuralNet/elmannetwork.cpp \
NeuralNet/recurrentlayer.cpp \
NeuralNet/recurrentperceptron.cpp \
NeuralNet/recurrentnetwork.cpp \
NeuralNet/distributedrecurrentnetwork.cpp \
NeuralNet/distributedrecurrentlayer.cpp
HEADERS += mainwindow.h \
webcam.h \
imageconvert.h \
merror.h \
exceptions.h \
imageprocessor.h \
handrecognizer.h \
NeuralNet/perceptron.h \
NeuralNet/neuralnetwork.h \
NeuralNet/neurallayer.h \
NeuralNet/continuous_perceptron.h \
gesturerecognizer.h \
gesture.h \
gesturemoveleft.h \
gesturemoveright.h \
xfunc.h \
gesturemoveup.h \
gesturemovedown.h \
onscreendisplayform.h \
utils.h \
hcimage.h \
NeuralNet/distributedneurallayer.h \
NeuralNet/distributedneuralnetwork.h \
kalmanfilter.h \
colorimage.h \
grayscaleimage.h \
color.h \
NeuralNet/elmannetwork.h \
NeuralNet/recurrentlayer.h \
NeuralNet/recurrentperceptron.h \
NeuralNet/recurrentnetwork.h \
NeuralNet/distributedrecurrentnetwork.h \
NeuralNet/distributedrecurrentlayer.h
FORMS += mainwindow.ui \
onscreendisplayform.ui
LIBS += -lv4l2 -lXtst -lfftw3 -lX11
OTHER_FILES +=
RESOURCES += \
resource.qrc