-
Notifications
You must be signed in to change notification settings - Fork 1
/
FaceRecognition.pro
50 lines (40 loc) · 999 Bytes
/
FaceRecognition.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
#-------------------------------------------------
#
# Project created by QtCreator 2014-12-13T09:05:57
#
#-------------------------------------------------
QT += core gui
QT_CONFIG -= no-pkg-config
CONFIG += link_pkgconfig
PKGCONFIG += opencv
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
INCLUDEPATH = /usr/local/include/opencv
TARGET = FaceRecognition
TEMPLATE = app
SOURCES += main.cpp\
facerecognitionmain.cpp \
entername.cpp \
captureface.cpp \
recognize.cpp \
detectObject.cpp \
ImageUtils_0.7.cpp \
preprocessFace.cpp \
# recognition.cpp \
common_cv.cpp \
getcamframe.cpp
HEADERS += facerecognitionmain.h \
entername.h \
captureface.h \
recognize.h \
common_cv.h \
detectObject.h \
ImageUtils.h \
preprocessFace.h \
# recognition.h \
getcamframe.h
FORMS += facerecognitionmain.ui \
entername.ui \
captureface.ui \
recognize.ui
target.path = /opt/$${TARGET}/bin
INSTALLS += target