Android Ndk Giving Errors While Compiling In Eclipse
Following is the Android.mk file of my android application in eclipse. LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) OPENCV_CAMERA_MODULES := off OPENCV_MK_PATH:=C:\
Solution 1:
for
LOGD()
, useLOGD("%s", out.str().c_str());
to get
Ptr<ORB> detector1
, you should useORB::create()
, notnew ORB()
.
Post a Comment for "Android Ndk Giving Errors While Compiling In Eclipse"