Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cansik/librealsense-java
Intel® RealSense™ SDK 2 wrapper for Java.
https://github.com/cansik/librealsense-java
camera depth hacktoberfest intel java library realsense v2
Last synced: 2 days ago
JSON representation
Intel® RealSense™ SDK 2 wrapper for Java.
- Host: GitHub
- URL: https://github.com/cansik/librealsense-java
- Owner: cansik
- Created: 2019-08-20T09:42:48.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-09-24T12:28:16.000Z (over 1 year ago)
- Last Synced: 2024-12-26T23:41:12.097Z (7 days ago)
- Topics: camera, depth, hacktoberfest, intel, java, library, realsense, v2
- Language: Java
- Homepage:
- Size: 25 MB
- Stars: 19
- Watchers: 3
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Intel RealSense Java [![](https://jitpack.io/v/cansik/librealsense-java.svg)](https://jitpack.io/#cansik/librealsense-java)
Intel® RealSense™ SDK 2 wrapper for Java.Supported version: `v2.53.1`
Following binaries are pre-compiled within the release jar:
- Windows x86 / x64
- Mac x64
- Linux armHF / arm64 / x86 / x64#### Important ⚠️
- The library is still under development
- Not all methods have been ported yet to fully support `2.53.1` through the high level API### Gradle / Maven
Include the library directly into your gradle / maven build by using [jitpack](https://jitpack.io/#cansik/librealsense-java).```groovy
repositories {
maven { url 'https://jitpack.io' }
}dependencies {
implementation 'com.github.cansik:librealsense-java:v2.53.1-0.6.0'
}
```### Examples
There are examples in the test folder for java & AWT and Processing:
- Java
- [Viewer Example](https://github.com/cansik/librealsense-java/blob/master/src/test/java/org/intel/rs/ui/SimpleImageViewer.java)
- [Processing Block Example](https://github.com/cansik/librealsense-java/blob/master/src/test/java/org/intel/rs/ui/ProcessingBlockTest.java)
- Processing
- [Processing Viewer Example](https://github.com/cansik/librealsense-java/blob/master/src/test/java/processing/ProcessingViewer.java)
- [Processing PointCloud Example](https://github.com/cansik/librealsense-java/blob/master/src/test/java/processing/ProcessingPointCloudViewer.java)### Library
The library is based on the [librealsense2 C-warpper](https://github.com/bytedeco/javacpp-presets/blob/master/librealsense2/README.md) which has been ported by [Samuel Audet](https://github.com/saudet).
This repository is based on the following works:
- [cansik/librealsense](https://github.com/cansik/librealsense/tree/master/wrappers/java)
- [edwinRNDR/librealsense](https://github.com/edwinRNDR/librealsense)
- [cansik/realsense-processing](https://github.com/cansik/realsense-processing)