QuickBirdEng / opencv-android

Easy way to integrate OpenCv into your Android project via Gradle
Other
684 stars 124 forks source link
android java opencv

OpenCV Android

Easy way to integrate OpenCV into your Android project via Gradle.
No NDK dependency needed - just include this library and you are good to go.

🚨 Breaking Changes

🚀 Releases

Each versions is available in only OpenCV as well as OpenCV with contributions.

4.x versions

👩‍💻 How to Integrate 🧑‍💻

  // opencv
  implementation `com.quickbirdstudios:opencv:VERSION`

  // opencv with contributions
  implementation `com.quickbirdstudios:opencv-contrib:VERSION`
}
if (!OpenCVLoader.initDebug())
   Log.e("OpenCV", "Unable to load OpenCV!");
else
   Log.d("OpenCV", "OpenCV loaded Successfully!");

‼️ Want to use OpenCV as source Dependency?

// Remove/comment out the one you aren't going to need
implementation(project(":opencv_VERSION"))
implementation(project(":opencv-contrib_VERSION"))

🛠 None of the released versions meet your requirements?

In progress 👷‍