Skip to content Skip to sidebar Skip to footer

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:

  1. for LOGD(), use

    LOGD("%s", out.str().c_str());

  2. to get Ptr<ORB> detector1, you should use ORB::create(), not new ORB().


Post a Comment for "Android Ndk Giving Errors While Compiling In Eclipse"