All Projects → quickbirdstudios → Opencv Android

quickbirdstudios / Opencv Android

Licence: other
Easy way to integrate OpenCv into your Android project via Gradle

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Opencv Android

Video Stream Analytics
Stars: ✭ 240 (-9.09%)
Mutual labels:  opencv
Computer Vision Guide
📖 This guide is to help you understand the basics of the computerized image and develop computer vision projects with OpenCV. Includes Python, Java, JavaScript, C# and C++ examples.
Stars: ✭ 244 (-7.58%)
Mutual labels:  opencv
Ai Job Notes
AI算法岗求职攻略(涵盖准备攻略、刷题指南、内推和AI公司清单等资料)
Stars: ✭ 3,191 (+1108.71%)
Mutual labels:  opencv
Mozart
An optical music recognition (OMR) system. Converts sheet music to a machine-readable version.
Stars: ✭ 241 (-8.71%)
Mutual labels:  opencv
Opencv
📷 Computer-Vision Demos
Stars: ✭ 244 (-7.58%)
Mutual labels:  opencv
Drowsiness detection
Stars: ✭ 250 (-5.3%)
Mutual labels:  opencv
Photobooth
A flexible photobooth software
Stars: ✭ 227 (-14.02%)
Mutual labels:  opencv
Opencv Python Series
An OpenCV & Python Tutorial Series and Reference.
Stars: ✭ 262 (-0.76%)
Mutual labels:  opencv
Porndetector
Porn images detector with python, tensorflow, scikit-learn and opencv.
Stars: ✭ 248 (-6.06%)
Mutual labels:  opencv
Pedestrian detection
通过HOG+SVM训练进行行人检测,行人数据库使用INRIAPerson,程序基于OpenCV实现
Stars: ✭ 253 (-4.17%)
Mutual labels:  opencv
Wasm Sudoku Solver
a WebAssembly-powered AR sudoku solver
Stars: ✭ 241 (-8.71%)
Mutual labels:  opencv
React Native Opencv Tutorial
👩‍🏫Fully working example of the OpenCV library used together with React Native
Stars: ✭ 244 (-7.58%)
Mutual labels:  opencv
Add Christmas Hat
Add Christmas hat on one's head based on OpneCV and Dlib
Stars: ✭ 251 (-4.92%)
Mutual labels:  opencv
Deeppicar
Deep Learning Autonomous Car based on Raspberry Pi, SunFounder PiCar-V Kit, TensorFlow, and Google's EdgeTPU Co-Processor
Stars: ✭ 242 (-8.33%)
Mutual labels:  opencv
Realtime object detection
Plug and Play Real-Time Object Detection App with Tensorflow and OpenCV. No Bugs No Worries. Enjoy!
Stars: ✭ 260 (-1.52%)
Mutual labels:  opencv
Blindwatermark
Java 盲水印
Stars: ✭ 239 (-9.47%)
Mutual labels:  opencv
Buildopencvtx2
Build and install OpenCV for the NVIDIA Jetson TX2
Stars: ✭ 249 (-5.68%)
Mutual labels:  opencv
Opencv Python Blueprints
M. Beyeler (2015). OpenCV with Python Blueprints: Design and develop advanced computer vision projects using OpenCV with Python, Packt Publishing Ltd., ISBN 978-178528269-0.
Stars: ✭ 262 (-0.76%)
Mutual labels:  opencv
Sorting visualization
The Sound of Sorting: Visualize and Audibilize 12 classic sorting algorithms in real time
Stars: ✭ 260 (-1.52%)
Mutual labels:  opencv
Opencv
Open Source Computer Vision Library
Stars: ✭ 58,652 (+22116.67%)
Mutual labels:  opencv

opencv-android

Update: OpenCV v4.2.0 and v4.3.0 (with and without contribution packages) are also now available.

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.

Disclamer: The GitHub project is not (yet) intended to be used as module dependency.
Include one of this dependencies in your module's build.gradle dependencies section

dependencies {

  // opencv 3.4.1
  implementation 'com.quickbirdstudios:opencv:3.4.1'
  
  // opencv 3.4.4 with contribution packages
  implementation 'com.quickbirdstudios:opencv:3.4.4-contrib'
  
  // opencv 3.4.5
  implementation 'com.quickbirdstudios:opencv:3.4.5'
 
  // opencv 4.0.1
  implementation 'com.quickbirdstudios:opencv:4.0.1'
  
  // opencv 4.1.0
  implementation 'com.quickbirdstudios:opencv:4.1.0'
  
  // opencv 4.1.0 with contribution packages
  implementation 'com.quickbirdstudios:opencv:4.1.0-contrib'
  
  // opencv 4.2.0
  implementation 'com.quickbirdstudios:opencv:4.2.0'
  
  // opencv 4.2.0 with contribution packages
  implementation 'com.quickbirdstudios:opencv:4.2.0-contrib'
  
  // opencv 4.3.0
  implementation 'com.quickbirdstudios:opencv:4.3.0'
  
  // opencv 4.3.0 with contribution packages
  implementation 'com.quickbirdstudios:opencv:4.3.0-contrib'
}

and this in your project's build.gradle repositories section

repositories {
  jcenter()
}

Don't forget to also initialize OpenCV with a statement like this e.g. in your Application class:

if (!OpenCVLoader.initDebug())
   Log.e("OpenCv", "Unable to load OpenCV");
else
   Log.d("OpenCv", "OpenCV loaded");
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].