kinect-sdk

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

Finger tracking in Kinect

不羁岁月 提交于 2019-12-12 09:09:21
问题 I was exploring development on kinect, and wanted to be able to recognize fingers rather than the entire hand only. The skeletal API by kinect official SDK only has the hand joint - no provisions for finger tracking. I also read that very recently Microsoft has included the grip recognition API in the new sdk and might include finger tracking in future releases. My question is given the current resources, how do i go about to do finger tracking ? Do we have external libraries for the same ?

Visual Studio 2013 and Kinect SDK 2.0 Cannot find or include <NuiApi.h>

筅森魡賤 提交于 2019-12-12 09:01:58
问题 I am learning Kinect development using C++ in Visual Studio 2013 (Desktop version on Windows 8.1). I have downloaded the Kinect SDK 2.0 from Microsoft. According to my understanding, NuiApi.h is part of Kinect SDK 2.0. However, I cannot include it (#include says Cannot open source file). Have searched my computer for the file but couldn't find it. Reinstalled Kinect SDK with no luck. Below is the related part of the code: #include<iostream> #include<Windows.h> #include<kinect.h> #include

How to move a kinect skeleton to another position

夙愿已清 提交于 2019-12-12 07:57:03
问题 I am working on a extension method to move one skeleton to a desired position in the kinect field os view. My code receives a skeleton to be moved and the destiny position, i calculate the distance between the received skeleton hip center and the destiny position to find how much to move , then a iterate in the joint applying this factor. My code, actualy looks like this. public static Skeleton MoveTo(this Skeleton skToBeMoved, Vector4 destiny) { Joint newJoint = new Joint(); ///Based on the

How to initialize two Kinect simultaneously? (SkeletalViewer)

余生长醉 提交于 2019-12-12 01:48:18
问题 I would like to do skeletal tracking simultaneously from two kinect cameras in SkeletalViewer and obtain the skeleton result. As in my understanding, the Nui_Init() only process the threads for first Kinect (which I suppose index = 0). However could I have the two skeletal tracking run at the same time as I would like to output their result respectively into two text files at the same time. (eg. for Kinect 0 output to "cam0.txt" while Kinect 1 output to "cam1.txt") Does anyone has experience

How to add Microsoft.Kinect.dll to COM Interop C# Class

╄→гoц情女王★ 提交于 2019-12-12 01:35:58
问题 I am using MATLAB to process Kinect information retrieved from C#. During this process, I've already performed various actions, and they all perform correctly. I can retrieve the information that is not dependent of the SDK, but i would like to use some functions of the SDK also. The problem is that I do not know how to add the Microsoft.Kinect reference to this kind of library. I've searched but the common answer is project--> add reference, and in COM Interop there is no such possibility.

Generate 3D model of a building with kinect sensor?

孤街醉人 提交于 2019-12-11 20:17:48
问题 I want to generate a 3D model as I walk alone in a building or in a room with the kinect sensor. I want know is this possible? my idea is to get 3d imaging from interval(like 1 image per 3 meters) and combine them, but how can I do that, how can I match and stitch these models into one 3d model, like in the picture below. this image is taken from here kintinuous 2.0 according to this it is possible. Is there any codes (like C#) I can refer? EDIT: mapping real world object using kinect I found

Kinect Infrared Camera Not working

北城余情 提交于 2019-12-11 13:43:47
问题 I am using the Kinect 2 with the newest available SDK version 2.0. Everything works except IR, tested it with both SDK infrared demo example and Kinect Studio, both result in a black screen. I also looked at the code and capturing Kinect IR frames does not result in any errors, it just consists of all minimum values. This is quite weird, as I thought IR was used to calculate depth and I can successfully read depth information. Also, I checked (with my cellphone camera) that the IR emitter is

How ro reuse .xed file recorded by kinect studio in another application

六眼飞鱼酱① 提交于 2019-12-11 08:24:42
问题 I have several .xed files recorded by Kinect Studio. I have to use them to test my application. Do you have any idea how to do that? I didn't recorded these files using my application, but I need to check gestures used in them with my own gesture recognizer app. 回答1: Here is what I suggest : Run your app Start Kinect Studio and connect your app to it Open your xed file Hit play Your app should act as if the movie is a live kinect stream. Note that you must have a Kinect plugged in your

How to make a copy of an Kinect Skeleton object to another Kinect Skeleton object

五迷三道 提交于 2019-12-11 05:53:07
问题 I am using the Kinect Toolbox, so I have a list of ReplaySkeletonFrames in my hand. I am iterating over this list, getting the first tracked skeleton and modifying some properties. As we know, when we change an object we also change the original object. I need to make a copy of an skeleton. Note: I can't use CopySkeletonDataTo() because my frame is a ReplaySkeletonFrame and not the ReplayFrame of the "normal" Kinect. I tried to make my own method that copies property by property, but some