Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dkurt/openvino_java
Build, package and publish OpenVINO for Java
https://github.com/dkurt/openvino_java
android gradle java openvino
Last synced: 23 days ago
JSON representation
Build, package and publish OpenVINO for Java
- Host: GitHub
- URL: https://github.com/dkurt/openvino_java
- Owner: dkurt
- License: apache-2.0
- Created: 2021-02-15T10:22:45.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-04-01T18:29:16.000Z (10 months ago)
- Last Synced: 2024-12-30T19:42:43.314Z (about 1 month ago)
- Topics: android, gradle, java, openvino
- Homepage:
- Size: 46.9 KB
- Stars: 12
- Watchers: 2
- Forks: 10
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Java bindings for Intel OpenVINO
[![GitHub all releases](https://img.shields.io/github/downloads/dkurt/openvino_java/total?color=blue)](https://github.com/dkurt/openvino_java/releases) [![Documentation Status](https://readthedocs.org/projects/openvino-contrib/badge/?version=latest)](https://openvino-contrib.readthedocs.io/en/latest/?badge=latest)
**NOTE**: This is an unofficial build farm for [OpenVINO in Java](https://github.com/openvinotoolkit/openvino_contrib/tree/master/modules/java_api) for Linux, Windows and Mac (x86) and Android (x86 and ARM64)
## How to use
Setup OpenVINO with Gradle:
```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](https://github.com/dkurt/openvino_java/releases) page.
## Tutorials
* [Audio Recognition in Android with OpenVINO](https://medium.com/@dmitry.kurtaev/audio-recognition-in-android-with-openvino-5d51e71f1426)
* [Sign language recognition on Android with Intel OpenVINO](https://medium.com/@anna.likholat/sign-language-recognition-on-android-with-intel-openvino-1296d76bfa5e)