kinect

Values in xaml is not reflecting in the other classes in a wpf c# application

瘦欲@ 提交于 2019-12-12 04:24:56
问题 I'm working on a wpf kinect project, its one of the developer toolkit samples of windows kinect and its called "Kinect Explorer" you can download it from the kinect developer toolkit sdk ver 1.5, in the kinectwindow.xaml i added a button and a checkbox, also there is a class called kinectskeleton.cs in which i created two datatables and a boolean variables, the first datatable is filled in the onrender function while the other is empty and the boolean variable is set by default to false. so

Loading ONI: Can’t create any node of the requested type

五迷三道 提交于 2019-12-12 04:18:42
问题 I am working on OpenFrameworks with the addon ofxOpenNI by gameoverhack. I got the addon successfully running on my Mac OS X El Capitan 10.11.2 with xCode 7.2. For those of you who have previously used this addon, you must be knowing that there are several examples provided with the addon, including one with simple ONI recording. I had an old ONI file recorded on my linux system and I tried to run it on the OS X installation. I got the following errors: [notice ] ofxOpenNIDevice[1]: Starting

How can I convert color stream (1920x1080) into depth stream(512x424) in Kinect V2 using matlab or C#

蓝咒 提交于 2019-12-12 03:27:53
问题 Kinect V2 color stream supported format is : 1920x1080. But kinect V2 depth stream format is : 512x424. Now when I start live steam for both sensors then they have different sizes because of different resolution. I cant resize them, because I need coordinates . so when I resize using Imresize(),the coordinates are not matched. I already read matlab documentation.They said hardware only supports this two format respectively.Now How can i do this in code so that both stream have the same

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.

is it possible to track an arbitrary skeleton model with the kinect?

蓝咒 提交于 2019-12-12 01:16:33
问题 I understand that the kinect is using some predefined skeleton model to return the skeleton based on the depth data. That's nice, but this will only allow you the get a skeleton for people. Is it possible to define a custom skeleton model? for example, maybe you want to track your dog while he's doing something. So, is there a way to define a model for four legs, a tail and a head and to track this? 回答1: Short answer, no. Using the Microsoft Kinect for Windows SDK's skeleton tracker you are

Kinect accelerometer data timer backup

為{幸葍}努か 提交于 2019-12-11 22:35:37
问题 First of all, I'm very beginner at programming and you probably will see that, but here is my problem: I want to record a Kinects Accelerometers data, and write it to a file every 5 minutes as a backup. But I can't reach in the Timers OnTimeEvent the StringBuilder data, that contains what the I get from the Accelerometer. So the question is, can the StringBuilder data passed trough the ElapsedEventArghs, or is there any other option, to reach the StringBuilders data? I copy my code here:

Kinect camera freeze

安稳与你 提交于 2019-12-11 20:36:03
问题 I have started developing in c# for the kinect with WPF. When I start the sample program "colorBasics" from Kinect for Windows Developer Toolkit, the camera works fine, but freezes after a couple of seconds. I copied over the relevant code ( so only the code for viewing the camera ) and it also happens in my own program. Anyone know what I'm doing wrong ? I don't get any error's. Here is the code namespace Testapp { /// <summary> /// Interaction logic for MainWindow.xaml /// </summary> public

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

raw depth data to text kinect v1.0 C#

别说谁变了你拦得住时间么 提交于 2019-12-11 17:33:23
问题 I've been searching the internet and I haven't had any luck. I'm using an Xbox Kinect with the Kinect SDK v1.0. I want to take the raw depth data and convert it into a text document so I can use the depth data. I found something on this site but it was for the Beta2 and I need to use v1.0. Any help is appreciated but I am new to coding so sample code would be best. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using System.Windows

OpenCV 3.0 RGBD DepthCleaner

☆樱花仙子☆ 提交于 2019-12-11 16:25:38
问题 I am having some difficulties to use the function DepthCleaner () with method = DEPTH_CLEANER_NIL to clean a depth image. This function is released in OpenCV 3.0.0. So, it's too early to find useful documentation for this function. If anyone of you have already used this function, could you please inform me which set of functions and codes I use to get a clean depth image. Let's say, I have a depth image from Kinect1 named as 'Img1.png'. I am declaring the image and using DepthCleaner as