-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathImageQ.pro
More file actions
70 lines (60 loc) · 1.33 KB
/
ImageQ.pro
File metadata and controls
70 lines (60 loc) · 1.33 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
62
63
64
65
66
67
68
69
70
QT += core gui
win32 {
LIBS += -lqwt
LIBS += -lopencv_core242.dll
LIBS += -lopencv_highgui242.dll
LIBS += -lopencv_imgproc242.dll
}
unix {
CONFIG += qwt
LIBS += -lopencv_core
LIBS += -lopencv_highgui
LIBS += -lopencv_imgproc
}
TARGET = ImageQ
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
mat2qimage.cpp \
histogram.cpp \
aboutwindow.cpp \
histogramwindow.cpp \
blurwindow.cpp \
cannywindow.cpp \
gradientwindow.cpp \
morphologywindow.cpp \
thresholdwindow.cpp \
image.cpp \
imagelabel.cpp \
setscalewindow.cpp \
textlistwindow.cpp \
opencv_future/imgproc/src/connectedcomponents.cpp
HEADERS += mainwindow.h \
mat2qimage.h \
histogram.h \
aboutwindow.h \
histogramwindow.h \
blurwindow.h \
cannywindow.h \
gradientwindow.h \
morphologywindow.h \
thresholdwindow.h \
image.h \
imagelabel.h \
setscalewindow.h \
textlistwindow.h \
opencv_future/imgproc/connectedcomponents.hpp
FORMS += mainwindow.ui \
aboutwindow.ui \
histogramwindow.ui \
blurwindow.ui \
cannywindow.ui \
gradientwindow.ui \
morphologywindow.ui \
thresholdwindow.ui \
image.ui \
setscalewindow.ui \
textlistwindow.ui
OTHER_FILES += \
README.txt \
COPYING.GPL3.txt