dkurt / openvino_java

Build, package and publish OpenVINO for Java

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Build, package and publish OpenVINO for Java

License:Apache License 2.0