-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathreg.pro
More file actions
31 lines (26 loc) · 671 Bytes
/
Copy pathreg.pro
File metadata and controls
31 lines (26 loc) · 671 Bytes
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
TEMPLATE = app
CONFIG += console c++14
CONFIG -= app_bundle
CONFIG -= qt
QMAKE_CXXFLAGS += -std=c++14 -g -O3
LIBS += -lopencv_core -lopencv_imgproc -lopencv_highgui
SOURCES += main.cpp
HEADERS += \
optimize.hpp \
register.hpp \
fusion.hpp \
fusion_algorithms.hpp \
register_algorithms.hpp \
core/fusion.hpp \
core/fusion_algorithms.hpp \
core/optimize.hpp \
core/register.hpp \
core/register_algorithms.hpp \
domain/image_repository.hpp \
interfaces/image_repository.hpp \
infastructure/file_repository.hpp \
app/imagefusion.hpp \
core/domain/fusion_services.hpp
DISTFILES += \
LICENSE \
README.md