dkurt / openvino_java

Build, package and publish OpenVINO for Java
Apache License 2.0
12 stars 10 forks source link
android gradle java openvino

Java bindings for Intel OpenVINO

GitHub all releases Documentation Status

NOTE: This is an unofficial build farm for OpenVINO in Java for Linux, Windows and Mac (x86) and Android (x86 and ARM64)

How to use

Setup OpenVINO with Gradle:

repositories {
  mavenCentral()

  def github = ivy {
    url "https://github.com/"

    patternLayout {
        artifact '/[organisation]/[module]/releases/download/[revision]/openvino-[revision]-[classifier].[ext]'
    }

    metadataSources { artifact() }
  }

  exclusiveContent {
      forRepositories(github)
      filter { includeGroup("dkurt") }
  }
}

dependencies {
  implementation "dkurt:openvino_java:2024.0:linux-x86_64@jar"  // Choose "macosx-x86_64" for Mac or "windows-x86_64" for Windows
}

Or download from releases page.

Tutorials