Kinect API written exclusively in Java without its own functions?

Is there any open source Java library that is not written or portable with C or C ++, or any C derivative that is fully compatible with any platform (for example, without build functions)?

The API must work with the cRIO module and therefore cannot have x86 or x64 assemblies.

Thanks!

+2
source share
1 answer

There is currently no Kinect API written exclusively in Java, and I did not expect it to be written in the foreseeable future, which will not wrap another API. If you want to interact with Kinect in java, it looks like there are currently two main solutions.

1) Use java wrappers for OpenKinect or 2) use java wrappers for OpenNI . From what I read, Kinect requires these drivers for use with OpenNI.

+1
source

Source: https://habr.com/ru/post/1441988/


All Articles