-
Notifications
You must be signed in to change notification settings - Fork 0
/
APCS.pro
98 lines (91 loc) · 2.3 KB
/
APCS.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
90
91
92
93
94
95
96
97
98
QT += core qml quick widgets opengl
QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.9
# Add more folders to ship with the application, here
folder_01.source = qml/APCS
folder_01.target = qml
DEPLOYMENTFOLDERS = folder_01
# Additional import path used to resolve QML modules in Creator's code model
QML_IMPORT_PATH =
# The .cpp file which was generated for your project. Feel free to hack it.
SOURCES += main.cpp \
cascadeparser.cpp \
haarfeatureitem.cpp \
cascadewriter.cpp \
cascadeobject.cpp \
stage.cpp \
weakclassifier.cpp \
feature.cpp \
colormapitem.cpp \
penguinviewer.cpp \
randomforest.cpp \
lbp/helper.cpp \
lbp/lbp.cpp \
lbpitem.cpp \
utility.cpp \
violajonesclassifier.cpp \
tracker.cpp \
hog/laplacian.cpp \
featureitem.cpp \
lbpfeatureextractor.cpp \
colorfeatureextractor.cpp \
featureextractor.cpp \
censusfeatureextractor.cpp \
edgefeatureextractor.cpp \
trainingsystem.cpp \
spatioframe.cpp \
spatiotemporalbox.cpp \
evaluationsystem.cpp \
aralclustering.cpp
# Installation path
# target.path =
# Please do not modify the following two lines. Required for deployment.
include(qtquick2applicationviewer/qtquick2applicationviewer.pri)
qtcAddDeployment()
HEADERS += \
cascadeparser.h \
haarfeatureitem.h \
cascadewriter.h \
cascadeobject.h \
stage.h \
weakclassifier.h \
feature.h \
colormapitem.h \
penguinviewer.h \
randomforest.h \
lbp/helper.hpp \
lbp/lbp.hpp \
lbpitem.h \
utility.h \
condensation/condensation.h \
condensation/data_types.h \
condensation/model_parameters.h \
violajonesclassifier.h \
violajonesdefs.h \
tracker.h \
hog/laplacian.h \
featureitem.h \
lbpfeatureextractor.h \
colorfeatureextractor.h \
featureextractor.h \
censusfeatureextractor.h \
edgefeatureextractor.h \
trainingsystem.h \
spatioframe.h \
spatiotemporalbox.h \
spatiotemporaldef.h \
evaluationsystem.h \
aralclustering.h
INCLUDEPATH += /usr/local/include/
LIBS += -L/usr/local/lib \
-lopencv_core \
-lopencv_imgproc \
-lopencv_features2d \
-lopencv_highgui \
-lopencv_objdetect \
-lopencv_ocl \
-lopencv_ml \
-lopencv_contrib \
-lm \
-litpp
RESOURCES += \
icons.qrc