我开始使用Android的OpenCV库,并希望构建随Android的OpenCV sdk库提供的示例。特别是,我构建了“人脸检测”OpenCV样本。
虽然项目本身构建正常,但在Eclipse中我看到以下错误:
Multiple markers at this line
- Symbol 'NULL' could not be resolved
- Invalid arguments ' Candidates are: const char * GetStringUTFChars(_jstring *, unsigned char *) '
在文件jni/DetectionBasedTracker_jni.cpp
的以下字符串中:
const char* jnamestr = jenv->GetStringUTFChars(jFileName, NULL);
我已经添加了所有必要的路径,但我仍然看到了这个错误。有什么建议吗?