Ask Your Question

aid_daniel's profile - activity

2015-01-07 01:18:54 -0600 asked a question opencv android sdk ini source code available,and where can I get it?

I hava get opencv android sdk java code ,but can't find any jni code such as those(from Mat.java):

// C++: Mat::Mat()
private static native long n_Mat();

// C++: Mat::Mat(int rows, int cols, int type)
private static native long n_Mat(int rows, int cols, int type);

// C++: Mat::Mat(Size size, int type)
private static native long n_Mat(double size_width, double size_height, int type);

So I wanna to know is those native code available ,where to get?

Thanks !

2014-06-27 00:55:42 -0600 asked a question how to use gen_java.py for android to generator jni files like imgproc.cpp

I am sorry but I have try to generator jni cpp files for android developer , but may be some wrong I can't do it.Anybody help me?

2014-06-17 23:25:55 -0600 asked a question I can't find some native methods such as cvtColor_0 for java api

I have recently download opencv2.4.9 source code and I organize it as image description

I have try to find some native methods for java api ,and I can find native methods implementation in jniwrapper(I copy files from opencv-2.4.9/modules/java/generator/src/cpp) for org.opencv.core java package. But I can't find for org.opencv.imgproc package. Where can I find for this ?