Ask Your Question

Revision history [back]

I'm using JavaCV 1.3 now and after a few problems it seems to work well now.

For anybody who's interested, I've edited my build.gradle like this:

...
dependencies {
    compile group: 'org.bytedeco', name: 'javacv', version: '1.3'
    desktopCompile 'org.bytedeco.javacpp-presets:opencv:3.1.0-1.3:windows-x86_64'
    androidCompile 'org.bytedeco.javacpp-presets:opencv:3.1.0-1.3:android-arm'
}
configurations {
    all*.exclude group: 'org.bytedeco', module: 'javacpp-presets'
}
...

Update your project and Gradle will download all necessary files and put it in your "Gradle Dependencies" Folder.