forked from pavolmarak/openfinger-preprocessor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPreprocessing.pro
More file actions
60 lines (52 loc) · 1.35 KB
/
Copy pathPreprocessing.pro
File metadata and controls
60 lines (52 loc) · 1.35 KB
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
QT += gui
Debug:TARGET = Preprocessingd
Release:TARGET = Preprocessing
TEMPLATE = lib
DEFINES += PREPROCESSING_LIBRARY CPU_ONLY
DEFINES -= NO_CPU
DEFINES += QT_DEPRECATED_WARNINGS
DEFINES += PRO_PWD=\\\"$$_PRO_FILE_PWD_\\\"
CONFIG += afcpu link_pkgconfig
QMAKE_CFLAGS_ISYSTEM=
SOURCES += preprocessing.cpp \
orientationmap.cpp \
thinning.cpp \
binarization.cpp \
gaborfiltermultithread.cpp \
gaborthread.cpp \
contrastenhancement.cpp \
frequencymap.cpp \
mask.cpp \
qualitymap.cpp \
gaborfiltergpu.cpp \
preprocessing_caffenetwork.cpp
HEADERS += preprocessing.h\
preprocessing_global.h \
helper.h \
orientationmap.h \
thinning.h \
binarization.h \
gaborfiltermultithread.h \
gaborthread.h \
contrastenhancement.h \
frequencymap.h \
mask.h \
imagecontour.h \
qualitymap.h \
gaborfiltergpu.h \
preprocessing_config.h \
preprocessing_caffenetwork.h
unix {
target.path = /usr/lib
INSTALLS += target
}
QMAKE_CFLAGS += lrt
unix:!macx: LIBS += -L/usr/local/lib -lafcpu \
-L/usr/lib/ -lprotobuf
unix:!macx: LIBS += -L/usr/lib/ -lboost_system\
-L/usr/lib/ -lpthread
INCLUDEPATH += /usr/include \
/usr/include/opencv4
DEPENDPATH += /usr/include
INCLUDEPATH += /usr/local/include
DEPENDPATH += /usr/local/include