Raspberry Pi 2 B and Kinect V2 - kinect

Is there anybody who can confirm it is possible to extract depth/RGB images from Kinect V2 + Kinect Adapter for Windows on Raspberry Pi 2 Model B?
As far as I know, Raspberry Pi 2 Model B has USB 3.0 which is a requirement for Kinect V2. I would like to know if anyone had success in RGB, IR and depth image transfer from Kinect V2 using libfreenect2 or any other similar way.
Furthermore, anyone knows any hardware similar to Raspberry Pi 2 (more expensive but still cheap) which supports Kinect V2?

According to the Raspberry Pi 2 datasheet, it only has USB 2.0 ports. So it won't work. :-(
The most basic hardware that works that I know of is the NVIDIA Jetson TK1. At $192 it's way more expensive then a Raspberry Pi, but cheaper than most other options. For more information on using libfreenect2 with the TK1, see this HOWTO

Related

Can I use Teachable Machine on Raspberry Pi Pico?

I found out that tensorflow lite was available in Raspberry Pi Pico.
So is the teachable machine available in Raspberry Pi Pico?
I don't know because I don't have any knowledge of this. What should I do if possible?

Is there any way to use Kinect SDK remotely with network?

The Azure Kinect sensor SDK requires Kinect to connect directly to pc via usb, but it's not appropriate to me. Is it posible to use something like raspberry pi to transfer kinect sensor data and process on a remote server? Do you have any suggestions for this?
I found the Kinect sdk does not support ARM architecture(raspberry pi),what other device can I use?
Processing the depth camera image requires GPU compute, so we don't currently support headless operation. There are some users that have successfully enabled headless operation on Linux, but it is not a straight forward path. See https://github.com/microsoft/Azure-Kinect-Sensor-SDK/issues/810 for more info.

Can a raspberry pi 3 without monitor,keyboard and mouse, send file via bluetooth to an Android device?

I wanted to send data between Android and Raspberry Pi 3 via Bluetooth.
I made a working Android program to send file from Android to Raspberry Pi 3, but I don't have any clue to make the program to receive (take data) from Raspberry Pi 3 without using any hardware on the Raspberry Pi 3 such as keyboard,mouse, and monitor.
Is it possible to make that kind of program? if yes, can you give me examples or references?

How do i setup a wifi adapter on my Raspberry Pi 2 Model B?

I have a Comfast CF-WU810N V2.0 - 2.4GHz 802.11b/g/n 150Mbps USB 2.0 Wireless Wi-Fi Network Adapter. It works with most of my devices but not with my Raspberry Pi. I want to set it up with my Raspberry Pi 2 Model B running windows 10 iot core. How do I do it? Please Help!
As of today the only supported WiFi dongle is the official Raspberry Pi dongle. This is known and actively being worked on.

USB HID Keyboard emulator

I want to make hardware keylogger from my Raspberry Pi model B. I think that I can connect keyboard to raspberry and connect raspberry to computer, but how I can emulate keyboard output?
I consider that here must be some low-level libraries for this purpose, but I can't find someone.
Thanks!
You need to implement HID device emulator on Pi in order to act like keyboard. But it seems impossible because Pi hasn't separate USB port.
No, on the Raspberry PI model B the USB hardware is actually connected to a built in Hub, this fixes the USB format as master, there is no way a model B can be a "slave device". Thats said, the SoC of the Raspberry PI is actually capable as being used for both a master and a slave USB device, so theoretically when using a model-A it could be possible to program it to behave as a slave device. Obviously its against the USB specification for a slave device to have a type-A connector, but with some soldering you could connect a type-B or even an USB-on-the-go connector.
source