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: 9 months 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 6 years ago)
- Default Branch: master
- Last Pushed: 2023-09-24T12:28:16.000Z (over 2 years ago)
- Last Synced: 2025-03-31T02:13:51.147Z (10 months ago)
- Topics: camera, depth, hacktoberfest, intel, java, library, realsense, v2
- Language: Java
- Homepage:
- Size: 25 MB
- Stars: 20
- Watchers: 2
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Intel RealSense Java [](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)