-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMedicalImageProcessing.pro
More file actions
61 lines (44 loc) · 1.31 KB
/
MedicalImageProcessing.pro
File metadata and controls
61 lines (44 loc) · 1.31 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
61
#-------------------------------------------------
#
# Project created by QtCreator 2015-12-12T15:30:48
#
#-------------------------------------------------
QT += core gui svg
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = MedicalImageProcessing
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
qsmartgraphicsview.cpp \
breastmassspiculatiodetect.cpp \
fuzzy_clustering.cpp \
activeContour/common.cpp \
activeContour/gvfc.cpp
HEADERS += mainwindow.h \
qsmartgraphicsview.h \
breastmassspiculatiodetect.h \
fuzzy_clustering.hpp \
activeContour/common.h \
activeContour/gvfc.h
FORMS += mainwindow.ui
RESOURCES += \
octicons/octicons.qrc
win32::LIBS += -lpsapi
msvc {
QMAKE_CXXFLAGS += -openmp -arch:AVX -D "_CRT_SECURE_NO_WARNINGS"
QMAKE_CXXFLAGS_RELEASE *= -O2
}
INCLUDEPATH += $$quote(D:/libraries/opencv300/include)\
$$PWD\
OPENCVLIB += $$quote(D:/libraries/opencv300/x64/vc12/lib)
CONFIG(debug, debug|release){
LIBS+= $$OPENCVLIB/opencv_world300d.lib\
$$OPENCVLIB/opencv_ts300d.lib\
#$$OPENCVLIB/opencv_saliency300.lib
}
CONFIG(release, debug|release){
LIBS+= $$OPENCVLIB/opencv_world300.lib\
$$OPENCVLIB/opencv_ts300.lib\
#$$OPENCVLIB/opencv_saliency300.lib
}
DEFINES += HAVE_OPENCV NO_SIDEMENU