I want to convert sdcard images to video in android. After many searches that I found, it is possible in javacv.when I try a simple javacv sample in pure java, it works fine in my eclipse.but, when I go to android, the same sample does not start in android.i to load and adding all .jar and .so files to the myproject-> libs / armeabi folder.my project no errors are displayed. but the error is encrypted at runtime.
I try with this class,
package com.example.ndkfoo_sample; import static com.googlecode.javacv.cpp.opencv_core.cvReleaseImage; import static com.googlecode.javacv.cpp.opencv_highgui.cvLoadImage; import static com.googlecode.javacv.cpp.opencv_highgui.cvShowImage; import static com.googlecode.javacv.cpp.opencv_highgui.cvWaitKey; import static com.googlecode.javacv.cpp.opencv_imgproc.CV_GAUSSIAN; import static com.googlecode.javacv.cpp.opencv_imgproc.cvSmooth; import com.googlecode.javacv.cpp.opencv_core.IplImage; import android.os.Bundle; import android.app.Activity; import android.view.Menu; public class MainActivity extends Activity {
My mistake is like
opencv error unspecified error.
My question is how to integrate opencv / javacv into android.is are there any steps or tutorials.?
thanks,
source share