No Implementation Found For Native Stitch
I use opencv stitching in android project. public class MainActivity extends Activity implements OnClickListener { private String mWarpType; private String mMatchConf;
Solution 1:
You probably copied the native code "as is" from the sample, but your Java class has a different package and name. Look for the function named Java_<some more>_Stitch()
in your cpp file, and rename it to become:
Java_com_prototype_MainActivity_Stitch()
Post a Comment for "No Implementation Found For Native Stitch"