-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCeramicDetectNew.pro
More file actions
129 lines (112 loc) · 3.77 KB
/
CeramicDetectNew.pro
File metadata and controls
129 lines (112 loc) · 3.77 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
QT += gui
win32 {
INCLUDEPATH += H:/opencv/build/include \
H:/opencv/build/include/opencv
LIBS += -LH:/opencv/build/x86/vc9/lib -lopencv_core245 -lopencv_highgui245 -lopencv_imgproc245 -lopencv_ml245 \
-LH:/work/github/Demo/lib -ltoupcam -ldetect -lMVCAMSDK
SOURCES += comm/driver/uart/win/qextserialbase.cpp \
comm/driver/uart/win/qextserialenumerator.cpp \
comm/driver/uart/win/qextserialport.cpp \
comm/driver/uart/win/win_qextserialport.cpp
HEADERS += \
comm/driver/include/qextserialbase.h \
comm/driver/include/qextserialenumerator.h \
comm/driver/include/qextserialport.h \
comm/driver/include/win_qextserialport.h \
}
unix{
LIBS += -lMVSDK -lopencv_core -lopencv_highgui -lrt -lopencv_imgproc -lopencv_ml
}
INCLUDEPATH += ./include \
video/include \
video/Interface/include \
comm/driver/Interface/include \
comm/driver/include \
comm/protocol/include \
app \
util/include \
comm/service/include \
handle/Interface/include
OTHER_FILES +=
SOURCES += \
main.cpp \
video/videorender.cpp \
util/imageproc/color.cpp \
video/capture/cvcaptureopr.cpp \
video/datamanager.cpp \
debugredirect.cpp \
util/imageproc/imageopr.cpp \
video/imageprocesser.cpp \
video/capture/industrycaptureopr.cpp \
comm/service/ioservice/ioboardservice.cpp \
app/mainwindown.cpp \
video/render/scrollrenderopr.cpp \
video/algo/simplealgo.cpp \
video/capture/toupcaptureopr.cpp \
video/capture/v4l2captureopr.cpp \
video/videocapture.cpp \
video/videomanager.cpp \
appconfig.cpp \
app/argssetting.cpp \
app/basedialog.cpp \
video/cameraparameterdef.cpp \
video/algo/ceramicdetectalgo.cpp \
comm/driver/deviceoprmanager.cpp \
comm/protocol/mudbus/master/mudbusmaster.cpp \
comm/driver/uart/uarttransferopr.cpp \
comm/driver/uart/linux/uart.cpp \
video/render/simplerenderopr.cpp \
util/crc/crcopr.cpp \
handle/handlermanager.cpp \
handle/demohandler.cpp \
handle/demohandler2.cpp \
systemsource.cpp
HEADERS += \
color.h \
video/include/datamanager.h \
include/ioboardservice.h \
include/imageopr.h \
video/include/imageprocesser.h \
include/industrycaptureopr.h \
video/Interface/include/irenderopr.h \
comm/driver/Interface/include/ITransferOpr.h \
video/Interface/include/libdatadef.h \
include/mainwindown.h \
video/include/scrollrenderopr.h \
video/include/simplealgo.h \
video/include/simplerenderopr.h \
include/toupcaptureopr.h \
comm/driver/include/uart.h \
comm/driver/include/uarttransferopr.h \
include/v4l2captureopr.h \
video/include/videocapture.h \
video/include/videomanager.h \
video/include/videorender.h \
video/Interface/include/ialgorithm.h \
include/argssetting.h \
include/basedialog.h \
include/appconfig.h \
comm/service/include/ioboardservice.h \
video/Interface/include/icaptureopr.h \
video/include/cameraparameterdef.h \
video/include/ceramicdetectalgo.h \
comm/driver/include/deviceoprmanager.h \
util/include/imageopr.h \
util/include/color.h \
app/mainwindown.h \
app/basedialog.h \
app/argssetting.h \
comm/protocol/include/mudbusmaster.h \
comm/protocol/include/mudbusdatadef.h \
comm/protocol/include/mudbusdef.h \
util/crc/crcopr.h \
util/include/crcopr.h \
video/include/CameraStatus.h \
video/include/v4l2captureopr.h \
handle/Interface/include/IHandler.h \
handle/handlermanager.h \
handle/demohandler.h \
include/algargs.h \
handle/demohandler2.h \
util/Interface/include/ifmtconverter.h \
systemsource.h