-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEye.pro
More file actions
39 lines (32 loc) · 759 Bytes
/
Copy pathEye.pro
File metadata and controls
39 lines (32 loc) · 759 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
32
33
34
35
36
37
38
39
#-------------------------------------------------
#
# Project created by QtCreator 2015-03-16T05:59:37
#
#-------------------------------------------------
QT += core
QT -= gui
TARGET = Eye
CONFIG += console
CONFIG += link_pkgconfig
CONFIG -= app_bundle
PKGCONFIG += opencv\
cvblob
INCLUDEPATH += /usr/include/opencv2
LIBS += -L/usr/lib \
-lopencv_core\
-lopencv_highgui\
-lopencv_imgproc
LIBS += -L/usr/local/lib\
TEMPLATE = app
SOURCES += main.cpp \
Headers/Segment.cpp \
Headers/Corner.cpp \
Headers/Ellipse.cpp \
Headers/Candidate.cpp \
Headers/ImageProcess.cpp
HEADERS += \
Headers/Segment.h \
Headers/Corner.h \
Headers/Ellipse.h \
Headers/Candidate.h \
Headers/ImageProcess.h