summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorInki Dae <inki.dae@samsung.com>2018-02-26 18:02:29 +0900
committerInki Dae <inki.dae@samsung.com>2018-02-27 19:58:49 +0900
commit4fa360bf3f95186207c1495ab24fb3c338bd8d4a (patch)
treed9a5d0011e48e766e91f6b2b10bc36618f562aaa
parent04f5a66752b80da3eecf89eaed8818ec03ece007 (diff)
downloadcaffeonacl-4fa360bf3f95186207c1495ab24fb3c338bd8d4a.tar.gz
caffeonacl-4fa360bf3f95186207c1495ab24fb3c338bd8d4a.tar.bz2
caffeonacl-4fa360bf3f95186207c1495ab24fb3c338bd8d4a.zip
uncomment the use of OpenCV ver 3.0
Tizen doesn't support OpenCV ver 3.0 but 2.4.x so this patch uncomments the use of OpenCV ver 3.0 Signed-off-by: Inki Dae <inki.dae@samsung.com>
-rw-r--r--Makefile.config.acl6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.config.acl b/Makefile.config.acl
index 8bbce0a2..ec03314b 100644
--- a/Makefile.config.acl
+++ b/Makefile.config.acl
@@ -8,14 +8,14 @@ AIDDIR=/usr/local/AID
export PKG_CONFIG_PATH=${AIDDIR}/opencv3.3.0/lib/pkgconfig
# CPU-only switch (uncomment to build without GPU support).
-CPU_ONLY := 1
+# CPU_ONLY := 1
USE_PROFILING := 0
USE_ACL :=1
USE_OPENCL:=1
ACL_ROOT :=$(AIDDIR)/ComputeLibrary
-ACL_INCS :=$(ACL_ROOT)/include
+ACL_INCS :=$(ACL_ROOT)/include
ACL_INCS +=$(ACL_ROOT)
ACL_LIBS_DIR :=$(ACL_ROOT)/lib
ACL_LIBS_DIR +=$(ACL_ROOT)/arm_compute
@@ -33,7 +33,7 @@ ACL_LIBS :=arm_compute arm_compute_core OpenCL
# ALLOW_LMDB_NOLOCK := 1
# Uncomment if you're using OpenCV 3
-OPENCV_VERSION := 3
+# OPENCV_VERSION := 3
# To customize your choice of compiler, uncomment and set the following.
# N.B. the default for Linux is g++ and the default for OSX is clang++