AndroidのOpenCVは初めてです。現在、MacOSXで設定しようとしています。
私はこれらの指示に従います:http://www.stanford.edu/class/ee368/Android/Tutorial-2-OpenCV-for-Android-Setup-Macintosh.pdf
このコマンドを使用してこのステップ(OpenCVライブラリにJNIをビルドする)に到達したら、次のようにします。
sh ./project_create.sh
コンソールにこのエラーレポートが表示されます。
Error: The project either has no target set or the target is invalid.
Please provide a --target to the 'android update' command.
ターゲットの設定方法。local.env.mkファイルに関係しますか?もしそうなら、これはその中身です:
#location of android-opencv.mk file that was generated by the cmake build
#of opencv for android
OPENCV_CONFIG=../build/android-opencv.mk
#the root directory of the crystax r4 ndk - ndk-build should be in this dir
#you can download the ndk from http://www.crystax.net/android/ndk-r4.php
#ANDROID_NDK_ROOT=$(HOME)/android-ndk-r4-crystax
ANDROID_NDK_ROOT=/Users/farissyariati/android-ndk-r4-crystax/
#define only armeabi-v7a to make the final apk smaller or armeabi
ARM_TARGETS="armeabi armeabi-v7a"
ありがとうございました。