Skip to content

duongtung4691/OpenCV

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

OpenCV Java project for Android

The OpenCV library for Android as Gradle project.

All credit goes to http://opencv.org/ I've took their library and exported it as .aar library. Now you can easily use OpenCV in a Gradle / Android Studio project.

Usage Maven Repo

I've uploaded the .aar in my maven repository. You only need to add following lines to your build.gradle to add the dependency:

repositories {
    maven {
        url 'https://raw.github.com/vRallev/mvn-repo/master/'
    }
}

dependencies {
    compile 'org.opencv:opencv-android:2.4.6'
}

Compiling the library

You can also clone the library and add it your local maven repository.

  1. Clone the repository.
  2. In the root project folder (opencv-library) run gradle uploadArchives.
  3. Add the same dependency as above:
repositories {
    mavenLocal()
}

dependencies {
    compile 'org.opencv:opencv-android:2.4.6'
}

About

The OpenCV Java project for Android.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%