Ask Your Question

vvyogi's profile - activity

2020-03-19 09:31:16 -0600 received badge  Popular Question (source)
2018-08-31 05:18:58 -0600 received badge  Necromancer (source)
2018-08-31 05:18:58 -0600 received badge  Self-Learner (source)
2018-08-31 03:38:44 -0600 edited answer Where is the lib file **mixed_sample.so** ?

I figured out the problem earlier but posting now so that it may help people facing similar issues. By default the andr

2018-08-31 03:37:56 -0600 answered a question Where is the lib file **mixed_sample.so** ?

I figured out the problem earlier but posting now so that it may help people facing similar issues. By default the andr

2018-08-31 03:29:50 -0600 received badge  Editor (source)
2018-08-31 03:29:50 -0600 edited question Is there a way to use openCV contrib modules with Android (native)

Is there a way to use openCV contrib modules with Android (native) Is there a way to use openCV contrib modules with And

2018-08-31 03:23:28 -0600 asked a question Is there a way to use openCV contrib modules with Android (native)

Is there a way to use openCV contrib modules with Android (native) Is there a way to use openCV contrib modules with And

2017-06-14 23:58:07 -0600 commented question Where is the lib file **mixed_sample.so** ?

@berak I am using android-studio, so I had to do a bit of shuffling to make the project compile. And it seems opencv_java3 load is working.
Can you point me to a source where I can see the correct config for jni in android-studio (uses gradle build system).

2017-06-14 12:44:19 -0600 asked a question Where is the lib file **mixed_sample.so** ?

I'm trying to compile the tutorial-2-mixedprocess application in android, this application comes with the sdk. But my application crashes when it tries to load mixed_sample

                    // Load native library after(!) OpenCV initialization
                    System.loadLibrary("opencv_java3");
                    Log.d(TAG, "Loaded the opencv");        //This line appears on the monitor

                    System.loadLibrary("mixed_sample");   // C-R-A-S-H z z z

I looking inside the libs directory that came with opencv-3.2.0-android-sdk.zip but libmixed_sample.so is nowhere to be found.

Where to find this file?

Is there any relation between this libfile and the opencv-manager?