Skip to content

Instantly share code, notes, and snippets.

@navinpai
Created September 23, 2016 18:48
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 navinpai/3613ff41e81ddebd2cb13cb4e4e5353a to your computer and use it in GitHub Desktop.
Save navinpai/3613ff41e81ddebd2cb13cb4e4e5353a to your computer and use it in GitHub Desktop.
Static initialize OpenCV on Android
private static final String TAG = "OpenCV::Main";
static {
if(!OpenCVLoader.initDebug()){
Log.d(TAG, "OpenCV not loaded");
} else {
Log.d(TAG, "OpenCV loaded");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment