Connect Kinect to Android

So, I'm trying to connect Kinect to an Android tablet in any way necessary. I would rather avoid a window machine or an arduino board in the middle.

The method I tried already is to have a C # program (kinect sdk uses C #) to communicate with an Android device. I tried to figure out how to send a message via usb, and decided to do port forwarding. It worked, but was slower than we would like.

I think the question is, can I connect it to Android as a USB device or accessory and communicate via JNI?

+4
source share
1 answer

OpenNI on Android

In theory, you should be able to use OpenNI for ARM. I saw a Hirotaka OpenNI demo running on Linaro Android, but using an Asus Xtion Pro sensor and a Panda board. Hirotaka also posted notes on his setup.

Doing a quick youtube search shows examples with Kinect and Android tablets.


Side note: I don’t understand why you are trying to use C #: you will write Android applications in Java, and OpenNI has a Java shell.

+3
source

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


All Articles