Skip to content

Instantly share code, notes, and snippets.

@jason9075
Created June 12, 2022 09:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jason9075/9d53cf4763677a67655e6c1463798883 to your computer and use it in GitHub Desktop.
Save jason9075/9d53cf4763677a67655e6c1463798883 to your computer and use it in GitHub Desktop.
public class NativeLib {
static {
System.loadLibrary("myopencv");
}
public native String stringFromJNI();
public native void toGrey(Bitmap bitmapIn, Bitmap bitmapOut);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment