mirror of
https://github.com/opencv/opencv.git
synced 2024-12-16 10:29:11 +08:00
5ffbcf1e16
Internal OpenCV library in OpenCV Manager support added; Unit tests improved, platform specific tests added, MIPS related tests added; Code refactoring done.
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 1
|
|
#endif
|
|
|
|
#define LIB_OPENCV_INFO_NAME "libopencv_info.so"
|
|
|
|
#endif |