-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMeanShift-Tracking.pro
55 lines (47 loc) · 1.04 KB
/
MeanShift-Tracking.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
54
55
#-------------------------------------------------
#
# Project created by QtCreator 2017-04-10T14:03:20
#
#-------------------------------------------------
QT = core gui
QT = opengl
QT = multimedia multimediawidgets
greaterThan(QT_MAJOR_VERSION, 4): QT = widgets
TARGET = MeanShift-Tracking
TEMPLATE = app
SOURCES = main.cpp\
mainwindow.cpp \
myvideosurface.cpp \
videowidget.cpp \
camera.cpp \
shared.cpp \
selectform.cpp \
myprocthread.cpp \
meanshift.cpp \
backimageviewer.cpp
HEADERS = mainwindow.h \
myvideosurface.h \
videowidget.h \
camera.h \
shared.h \
selectform.h \
myprocthread.h \
meanshift.h \
backimageviewer.h
FORMS = mainwindow.ui \
selectform.ui \
backimageviewer.ui
macx{
#OpenCV
INCLUDEPATH = /usr/local/opt/opencv3/include
LIBS = `pkg-config --libs opencv`
}
unix:!macx{
#Cross Compile
target.path = /home/pi/test5
INSTALLS = target
}
win32{
#preprocessor definition
DEFINES = WINDOWS
}