Ask Your Question

borune's profile - activity

2015-04-08 01:57:52 -0600 received badge  Enthusiast
2015-04-02 04:08:32 -0600 asked a question how to add android opencv library in Qt project

hey guys!

could anybody help me with setting up qt project for using opencv on android? my pro file looks like this:

...
ANDROID_OPENCV = ../opencv2410androidsdk/sdk/native
INCLUDEPATH += $ANDROID_OPENCV/jni/include/
LIBS += -L$$ANDROID_OPENCV/libs/armeabi-v7a\\\*
...

opencv2410androidsdk is directory, where opencv for android was unzipped

The problem is that qt doesn't see given libraries and gives me many errors like "undefined reference to .." in each place when i try to use opencv objects and methods.

Could anybody help me pls

2015-03-24 07:43:40 -0600 asked a question opencv+qt+android

hey guys! could anybody give a step-by-step tutorial for setting up qt for building android applications using opencv?

I have a qt and i can to create android projects. Also i have opencv, built for windows and i can to create windows projects using opencv. Now i wanna to create android application using opencv library. I've downloaded opencv-android from here and what should i do next? Is it need to build opencv from sources like it need when building opencv for windows? or i can simply use *.a files from OpenCV-2.4.10-android-sdk\sdk\native\libs?