-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathaddon_config.mk.backup
31 lines (29 loc) · 1.67 KB
/
addon_config.mk.backup
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
# All variables and this file are optional, if they are not present the PG and the
# makefiles will try to parse the correct values from the file system.
#
# Variables that specify exclusions can use % as a wildcard to specify that anything in
# that position will match. A partial path can also be specified to, for example, exclude
# a whole folder from the parsed paths from the file system
#
# Variables can be specified using = or +=
# = will clear the contents of that variable both specified from the file or the ones parsed
# from the file system
# += will add the values to the previous ones in the file or the ones parsed from the file
# system
#
# The PG can be used to detect errors in this file, just create a new project with this addon
# and the PG will write to the console the kind of error and in which line it is
meta:
ADDON_NAME = ofxOpenCvDnnObjectDetection
ADDON_DESCRIPTION = OpenCV DNN Module for Object Detection addon. YOLO, SSD, R-CNN implementation for Openframeworks.
ADDON_AUTHOR = Tetsuaki Baba
ADDON_TAGS = "computer vision" "opencv" "image processing" "darknet" "yolov2" "object detection" "classification"
ADDON_URL = https://github.com/TetsuakiBaba
common:
ADDON_INCLUDES = /usr/local/Cellar/opencv@3/3.4.5/include/
ADDON_LIBS = /usr/local/Cellar/opencv@3/3.4.5/lib/libopencv_core.dylib
ADDON_LIBS += /usr/local/Cellar/opencv@3/3.4.5/lib/libopencv_imgproc.dylib
ADDON_LIBS += /usr/local/Cellar/opencv@3/3.4.5/lib/libopencv_dnn.dylib
ADDON_LIBS += /usr/local/Cellar/opencv@3/3.4.5/lib/libopencv_dnn_objdetect.dylib
ADDON_LIBS += /usr/local/Cellar/opencv@3/3.4.5/lib/libopencv_highgui.dylib
ADDON_LIBS += /usr/local/Cellar/opencv@3/3.4.5/lib/libopencv_imgcodecs.dylib