mirror of
https://github.com/opencv/opencv.git
synced 2024-12-17 10:58:00 +08:00
a1a2cb0aeb
Memory leak in color-blob-detection sample fixed; Default face size in face-detection is set to 20%; Error handling improved; Some possible mat leak fixed; Manager verison and engine interface version incremented to fix incompatibilities; Docs updated;
14 lines
268 B
C
14 lines
268 B
C
#ifndef __ENGINE_COMMON_H__
|
|
#define __ENGINE_COMMON_H__
|
|
|
|
// Global tag for Logcat output
|
|
#undef LOG_TAG
|
|
#define LOG_TAG "OpenCVEngine"
|
|
|
|
#ifndef OPEN_CV_ENGINE_VERSION
|
|
#define OPEN_CV_ENGINE_VERSION 2
|
|
#endif
|
|
|
|
#define LIB_OPENCV_INFO_NAME "libopencv_info.so"
|
|
|
|
#endif |