kinect

Kinect API written solely in Java without native functions?

余生长醉 提交于 2019-12-13 15:28:51
问题 Is there any open-source Java library, not written or ported from C or C++, or any C derivative, fully compatible with any platform (e.g. not containing assembly functions)? The API needs to work on a cRIO module, and therefore can't have any x86 or x64 assembly. Thanks! 回答1: Currently, there is no Kinect API written solely in java, nor would I expect one to be written in the foreseeable future that does not wrap another API. If you would like to interact with the Kinect in java, looks like

No ready kinect found?

ぐ巨炮叔叔 提交于 2019-12-13 14:25:49
问题 I am beginner to Kinect pogramming. I have already installed the windows sdk. I tried to run the samples in the developer tookit. However, it said that "no ready kinect found". I know know why. Could anyone help me about this? Thanks a lot! Yuanhui 回答1: I am also a beginner. Actually I just got the kinect yesterday and encountered the same problem as you. The sdk I installed is v1.8. Here is how I checked everything and solved it: Look into the device manager to check if the drivers are all

Kinect Device not connected

ⅰ亾dé卋堺 提交于 2019-12-13 12:19:52
问题 I've been trying to get my Kinect connected to my computer. I've installed the drivers and OpenNI, and when I tried to run NiViwer 64, the only message i get is this: "Device: PrimeSense/SensorKinect/5.1.2.1: The Device is not connected!". Any ideas on how to fix this? 回答1: There is a proper order of installing drivers, sdk etc specially when it comes to OpenNI. You have to be sure that you didn`t install enything from Microsoft cause it may cause some issues. IMO uninstall everything and go

Kinect One and Matlab - Data Stream Display

ぐ巨炮叔叔 提交于 2019-12-13 10:29:29
问题 The current version of Matlab doesn't support Kinect One natively. There have been several posts here on Stackoverflow asking how to render the specific data streams (depth, skeleton or rgb) within the Matlab environment. Does anyone have any suggestions or comment as to how to record/display data within Matlab? 回答1: This post is intended to explain how to render the data streams of Kinect One in Matlab. I’ve always preferred recording data separately than using Matlab. This is is a little

How to access 'WindowsPreview' namespace?

落爺英雄遲暮 提交于 2019-12-13 10:08:47
问题 I am trying to work with a kinect 2 in c++. All the code samples I have seen use the WindowsPreview namespace but I don't seem to have access to it. I have the SDK (code samples run fine). I have correctly linked to the Kinect.h and kinect20.lib files. Can someone help me out? 回答1: WindowsPreview::Kinect is the namespace when using the Kinect API for the Windows Store, the other APIs use Microsoft::Kinect. Found a mention of the namespaces in one of the videos: Kinect Data Sources and

Problems calculating stride and offset in WritePixels

岁酱吖の 提交于 2019-12-13 07:06:22
问题 I am writing a Kinect application, where I use the color image from the sensor. I get a 640 x 480 color image, I copy the data from the sensor to a WriteableBitmap, with the WritePixels method. When I use the whole color image I have no issues. But I would like to use only the middle part of the image. But I can't get stride and or offset right? To copy the whole image I do the following: _colorImageWritableBitmap.WritePixels( new Int32Rect(0, 0, colorImageFrame.Width, colorImageFrame.Height)

Kinect joint detection from top

不打扰是莪最后的温柔 提交于 2019-12-13 06:58:00
问题 I'm wondering, does the Kinect detects joints correctly when it's put on the top (on the ceiling). I don't have necessary equipment to attach it to ceiling and test, but was wondering whether it reliably detects human. I'm ok even if it confuses the joints, actually. Has anybody tested this? 回答1: From what I've seen while using it, the skeleton detection is iffy from any angle other than directly pointing at a person's front or back. A Kinect pointed straight down with people walking under it

unable to find libfreenect

我是研究僧i 提交于 2019-12-13 06:19:36
问题 I am trying a simple program using kinect. I have installed both libfreenect and libpng packages. I also tried downloading the header file and including it in the code but it is not working. I am running on ubuntu 12.04.I am getting following errors: cc -O3 -lpng `pkg-config libfreenect --libs --cflags` -o kinect-depth-ascii kinect.o image.o buffer.o kinect-depth-ascii.c /tmp/ccPavHLk.o: In function `draw_depth_image': kinect-depth-ascii.c:(.text+0x131): undefined reference to `Image_get

Do no reset TrackingId Kinect when user left screen C#

痞子三分冷 提交于 2019-12-13 05:51:24
问题 In my situation i track bodies with Kinect Sensor with body.TrackingId and after on each body i draw a skeleton in different color. But when an user left the screen and come back a new id is assigned to this player and i can't take the old id. This situation is very problematic because: if a player go ahead another player the id of the second player will be lost. Can someone know who i can to to recognize if it was a same player without giving a new TrackingId Thank you. 回答1: I dont thinks

Return barcode location in the image while decoding with zxing

眉间皱痕 提交于 2019-12-13 00:56:28
问题 In my current project, I need to know how to get the location of the barcode in the image with zxing, in pixel or range of pixels. My image source is Kinect v2. The main purpose is to associate barcode with body frame, which requires the location information. I'm using standard Kinect v2 SDK and visual studio 2013, in C#. I feel it's not difficult, but I need some guidance. Thank you very much in advance! 回答1: It looks to me (referencing posts such as this) that the ResultFound action should