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 99 100 101 102 103 104
|
# ##########################
# Configuration #
# ##########################
TEMPLATE = app
QT += opengl svg
TARGET = mldemos
NAME = mldemos
MLPATH =..
DESTDIR = $$MLPATH
macx:ICON = logo.icns
win32:RC_FILE = MachineLearning.rc
RESOURCES += mldemos.qrc
CONFIG += mainApp
include($$MLPATH/MLDemos_variables.pri)
# ##########################
# Source Files #
# ##########################
FORMS += aboutDialog.ui \
algorithmOptions.ui \
optsClassify.ui \
optsCluster.ui \
optsRegress.ui \
optsMaximize.ui \
optsReinforcement.ui \
optsDynamic.ui \
optsProject.ui \
optsCompare.ui \
mldemos.ui \
drawingTools.ui \
drawingToolsContext1.ui \
drawingToolsContext2.ui \
drawingToolsContext3.ui \
drawingToolsContext4.ui \
statisticsDialog.ui \
viewOptions.ui \
compare.ui \
expose.ui \
manualSelection.ui \
inputDimensions.ui \
datagenerator.ui \
gridsearch.ui \
visualization.ui \
dataseteditor.ui
HEADERS += basicMath.h \
canvas.h \
datasetManager.h \
optimization_test_functions.h \
gettimeofday.h \
drawUtils.h \
drawSVG.h \
drawTimer.h \
mldemos.h \
mymaths.h \
public.h \
roc.h \
types.h \
widget.h \
interfaces.h \
classifier.h \
obstacles.h \
regressor.h \
maximize.h \
reinforcement.h \
dynamical.h \
clusterer.h \
compare.h \
spline.h \
datagenerator.h \
gridsearch.h \
visualization.h \
dataseteditor.h \
algorithmmanager.h
SOURCES += \
main.cpp \
mldemos.cpp \
mlstats.cpp \
mlsaving.cpp \
compare.cpp \
datagenerator.cpp \
gridsearch.cpp \
visualization.cpp \
dataseteditor.cpp \
algorithmmanager.cpp
OTHER_FILES += \
shaders/drawSamples.fsh \
shaders/drawSamples.vsh \
shaders/smoothTransparent.fsh \
shaders/smoothTransparent.vsh \
shaders/renderFBO.fsh \
shaders/renderFBO.vsh \
shaders/blurFBO.fsh \
shaders/blurFBO.vsh \
shaders/depthSamples.fsh \
shaders/depthSamples.vsh \
shaders/drawSamplesShadow.fsh \
shaders/drawSamplesShadow.vsh
|