forked from kokarem1/aioi3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaioi3.pro
53 lines (44 loc) · 1.23 KB
/
aioi3.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
#-------------------------------------------------
#
# Project created by QtCreator 2016-02-26T19:38:22
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = aioi3
TEMPLATE = app
LIBS += `pkg-config opencv --libs`
CONFIG += c++11
SOURCES += main.cpp\
mainwindow.cpp \
dialogbinarization.cpp \
dialogotsulocal.cpp \
dialogquantization.cpp \
dialogbasecolorcorrection.cpp \
dialoghistogramnormalization.cpp \
dialoghistogramequalization.cpp \
dialoggammacorrection.cpp \
dialogpiecewiselinear.cpp \
dialogzoom.cpp
HEADERS += mainwindow.h \
dialogbinarization.h \
dialogotsulocal.h \
dialogquantization.h \
dialogbasecolorcorrection.h \
dialoghistogramnormalization.h \
dialoghistogramequalization.h \
dialoggammacorrection.h \
dialogpiecewiselinear.h \
dialogzoom.h
FORMS += mainwindow.ui \
dialogbinarization.ui \
dialogotsulocal.ui \
dialogquantization.ui \
dialogbasecolorcorrection.ui \
dialoghistogramnormalization.ui \
dialoghistogramequalization.ui \
dialoggammacorrection.ui \
dialogpiecewiselinear.ui \
dialogzoom.ui
RESOURCES += \
resources.qrc