<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Comment Feed for Channel 9 - Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals/RSS"></atom:link>
	<image>
		<url>http://ak.channel9.msdn.com/ch9/0c65/11c93a95-1599-4c55-b7f0-9efd005e0c65/SkeletalTrackingFundamentals_100_ch9.jpg</url>
		<title>Channel 9 - Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<link></link>
	</image>
	<description>Update: Kinect for Window SDK v1 Quickstart Series now Available (Feb 1st)Please use the newly updated Kinect for Windows SDK Quickstart series. The content below will only work with the Beta 2 version of the Kinect for Windows SDK. &amp;nbsp; This video covers the basics of skeletal tracking using the Kinect sensor.&amp;nbsp; You may find it easier to follow along by downloading the Kinect for Windows SDK Quickstarts samples and slides that have been updated for Beta 2 (Nov, 2011). [00:31] Skeleton Tracking API [01:24] Understanding Skeleton Quality and Joint data [03:27] Setup skeleton tracking [03:44] Adding a basic hand tracked cursor [09:12] Using TransformSmoothing to remove “skeletal jitter” &amp;nbsp;Updates for Kinect for Windows SDK Beta 2 (Nov, 2011)The video has not been updated for Beta 2, but the following changes have been made: Previously, the SkeletonFrameReady event would only fire when there was a tracked skeleton. The SkeletonFrameReady has been updated to fire continuously even when there are no skeletons being tracked. To get tracked skeletons, you can filter the list of skeletons to see if the TrackingState property is set to SkeletonTrackingState.Tracked. Beta 2 includes a sample (Microsoft.Samples.Kinect.WpfViewers) set of user controls for visualizing data from the Color/RGB and Depth cameras that you can reuse in your application. The samples can be found at: &amp;quot;\Program Files\Microsoft SDKs\Kinect\v1.0 Beta2\Samples\KinectSDKSamples.zip&amp;quot; &amp;nbsp;SetupThe steps below assume you have setup your development environment as explained in the Setting Up Your Development Environment video. Task: Setup skeleton trackingCreate the Window_Loaded event Go to the properties window (F4), select the MainWindow, select the Events tab, and double click on the Loaded event to create the Window_Loaded event  &amp;nbsp; Initializing the runtime Create a new variable outside of the Window_Loaded event to reference the Kinect runtime. C#
Runtime nui = new Runtime();
 Visual Basic
Dim nui As New Runtime()
 In the Window_Loaded event, initialize the runtime with the options you want to use. For this example, set RuntimeOptions.UseSkeletalTracking to receive skeletal data and register for the SkeletonFrameReady event. C#
nui.Initialize(RuntimeOptions.UseSkeletalTracking);

nui.SkeletonFrameReady &amp;#43;= new EventHandler&amp;lt;SkeletonFrameReadyEventArgs&amp;gt;(nui_SkeletonFrameReady);

void nui_SkeletonFrameReady(object sender, SkeletonFrameReadyEventArgs e)
{
}
 Visual Basic
nui.Initialize(RuntimeOptions.UseSkeletalTracking)

AddHandler nui.SkeletonFrameReady, AddressOf nui_SkeletonFrameReady

Private Sub nui_SkeletonFrameReady(ByVal sender As Object, ByVal e As SkeletonFrameReadyEventArgs)

End Sub
 Running the applicationAdd a breakpoint inside the SkeletonFrameReady event and run the application. Note – You will need to stand far enough away that the Kinect can see all or most of your skeleton for the SkeletonFrameReady event to fire.  &amp;nbsp; When the breakpoint fires, you can inspect the SkeletonFrameReadyEventArgs to see that the SkeletonFrame returns a collection of six skeletons as shown below. &amp;nbsp;  &amp;nbsp; &amp;nbsp; Task: Add a basic hand tracked cursorIn this example, we&#39;re going to use the position of the tracked skeleton&#39;s, head, left hand, and right hand to move ellipse controls. Designing your UIStarting from the project above, switch to MainWindow.xaml and make sure you can see the XAML code. We will add three three ellipses of varying color onto a Canvas control named MainCanvas as shown in the XAML below. XAML
&amp;lt;Canvas Name=&amp;quot;MainCanvas&amp;quot;&amp;gt;
    &amp;lt;Ellipse Canvas.Left=&amp;quot;0&amp;quot; Canvas.Top=&amp;quot;0&amp;quot; Height=&amp;quot;50&amp;quot; Name=&amp;quot;headEllipse&amp;quot; Stroke=&amp;quot;Black&amp;quot; Width=&amp;quot;50&amp;quot; Fill=&amp;quot;Orange&amp;quot; /&amp;gt;
    &amp;lt;Ellipse Canvas.Left=&amp;quot;50&amp;quot; Canvas.Top=&amp;quot;0&amp;quot; Height=&amp;quot;50&amp;quot; Name=&amp;quot;rightEllipse&amp;quot; Stroke=&amp;quot;Black&amp;quot; Width=&amp;quot;50&amp;quot; Fill=&amp;quot;SlateGray&amp;quot; /&amp;gt;
    &amp;lt;Ellipse Canvas.Left=&amp;quot;100&amp;quot; Canvas.Top=&amp;quot;0&amp;quot; Fill=&amp;quot;SpringGreen&amp;quot; Height=&amp;quot;50&amp;quot; Name=&amp;quot;leftEllipse&amp;quot; Stroke=&amp;quot;Black&amp;quot; Width=&amp;quot;50&amp;quot; /&amp;gt;
&amp;lt;/Canvas&amp;gt;
 Get the Tracked SkeletonIn the SkeletonFrameReady event, we&#39;ll use a LINQ query to get the first tracked skeleton. C#
void nui_SkeletonFrameReady(object sender, SkeletonFrameReadyEventArgs e)
{
    SkeletonFrame allSkeletons = e.SkeletonFrame;

    //get the first tracked skeleton
    SkeletonData skeleton = (from s in allSkeletons.Skeletons
                             where s.TrackingState == SkeletonTrackingState.Tracked
                             select s).FirstOrDefault();
}
 Visual Basic
Private Sub nui_SkeletonFrameReady(ByVal sender As Object, ByVal e As SkeletonFrameReadyEventArgs)
    Dim allSkeletons As SkeletonFrame = e.SkeletonFrame

    &#39;get the first tracked skeleton
    Dim skeleton As SkeletonData = ( _
        From s In allSkeletons.Skeletons _
        Where s.TrackingState = SkeletonTrackingState.Tracked _
        Select s).FirstOrDefault()
End Sub
 Getting a Joint positionA Joint position returns X,Y,Z values as explained below X = Horizontal position measured as the distance, in meters from the Kinect along the X Axis Y = Vertical position measured as the distance, in meters from the Kinect along the Y Axis Z = Distance from Kinect measured in meters Scaling a Joint value Given that the X and Y positions are distance measurements, we can use the Coding4Fun Kinect Toolkit ScaleTo method to scale the value to a maximum X and Y position as shown below. C#
Joint HandRight =  skeleton.Joints[JointID.HandRight].ScaleTo(640, 480);
 Visual Basic
Dim HandRight = skeleton.Joints(JointID.HandRight).ScaleTo(640, 480)
 You can also constrain the maximum values for the skeletal joints to a smaller range.&amp;nbsp; For example, if you were designing an application where the user can reach around the screen to touch things, you may not want them to have to walk two feet left or right to reach the edges.&amp;nbsp; By using the second version of the ScaleTo method, you can specify the range of the specified joint to something smaller as shown: C#
Joint HandRight =  skeleton.Joints[JointID.HandRight].ScaleTo(640, 480, .5f, .5f);
 Visual Basic
Dim HandRight = skeleton.Joints(JointID.HandRight).ScaleTo(640, 480, .5f, .5f)
 This code will make it so that your right hand only has to travel one meter (joint range of -0.5 to &amp;#43;0.5) to traverse the pixels at 0 to 640. If you set this value to –1 to &amp;#43;1, for example, then the right hand would have to travel two meters total, one meter to the left, one meter to the right to traverse the 640 pixels. Also, as you can see above, you can get a particular Joint, like the HandRight Joint, by using the skeleton indexer for the Joints collection. Setting an Ellipse PositionTo move the ellipses in our MainWindow&amp;nbsp; to the location of a Joint, we will use the method below that sets the Canvas.Left and Canvas.Top position to the X (Left) and Y (Top) value from the Joint parameter. C#
private void SetEllipsePosition(FrameworkElement ellipse, Joint joint)
{
    var scaledJoint = joint.ScaleTo(640, 480, .5f, .5f);

    Canvas.SetLeft(ellipse, scaledJoint.Position.X);
    Canvas.SetTop(ellipse, scaledJoint.Position.Y);
}
 Visual Basic
Private Sub SetEllipsePosition(ByVal ellipse As FrameworkElement, ByVal joint As Joint)
    Dim scaledJoint = joint.ScaleTo(640, 480,.5f,.5f)

    Canvas.SetLeft(ellipse, scaledJoint.Position.X)
    Canvas.SetTop(ellipse, scaledJoint.Position.Y)
End Sub
 &amp;nbsp;Putting it all togetherFinally, in the nui_SkeletonFrameReady event, call the SetEllipsePosition methods for the three joints as shown below: C#
SetEllipsePosition(headEllipse, skeleton.Joints[JointID.Head]);
SetEllipsePosition(leftEllipse, skeleton.Joints[JointID.HandLeft]);
SetEllipsePosition(rightEllipse, skeleton.Joints[JointID.HandRight]);
 Visual Basic
SetEllipsePosition(headEllipse, skeleton.Joints(JointID.Head))
SetEllipsePosition(leftEllipse, skeleton.Joints(JointID.HandLeft))
SetEllipsePosition(rightEllipse, skeleton.Joints(JointID.HandRight))
  &amp;nbsp; &amp;nbsp; Task: Using TransformSmoothing to for less skeletal jitterUsing the same application as above, you may notice jitteriness in the hand positions as small changes between updates to the SkeletalFrameReady event change the location of the ellipses. Using TransformSmoothParameters To see the difference between using and not using TransformSmoothing, toggle the true/false TransformSmooth property.&amp;nbsp; There are two ways to use TransformSmoothing, you can set it to true and it will use a default set of parameters, or you can customize and experiment with each of the parameters to find the parameters that work best for your application. To do that, you’ll need create the TransformSmoothParameters struct yourself and define the parameters. You must set the TransformSmoothParameters after calling the nui.Initialize method. Note: Since every application is different, you will need to experiment with the parameters to understand what&#39;s right for your application. C#
private void SetupKinect()
{
     if (Runtime.Kinects.Count == 0)
     {
         this.Title = &amp;quot;No Kinect connected&amp;quot;; 
     }
     else
     {
         //use first Kinect
         nui = Runtime.Kinects[0];
         //Initialize to do skeletal tracking
         nui.Initialize(RuntimeOptions.UseSkeletalTracking);
         //add event to receive skeleton data
         nui.SkeletonFrameReady &amp;#43;= new EventHandler&amp;lt;SkeletonFrameReadyEventArgs&amp;gt;(nui_SkeletonFrameReady);
         //to experiment, toggle TransformSmooth between true &amp;amp; false
         // parameters used to smooth the skeleton data
         nui.SkeletonEngine.TransformSmooth = true;
         TransformSmoothParameters parameters = new TransformSmoothParameters();
         parameters.Smoothing = 0.7f;
         parameters.Correction = 0.3f;
         parameters.Prediction = 0.4f;
         parameters.JitterRadius = 1.0f;
         parameters.MaxDeviationRadius = 0.5f;
         nui.SkeletonEngine.SmoothParameters = parameters;
     }
}
 Visual Basic
        Private Sub SetupKinect()
            If Runtime.Kinects.Count = 0 Then
                Me.Title = &amp;quot;No Kinect connected&amp;quot;
            Else
                &#39;use first Kinect
                nui = Runtime.Kinects(0)
                &#39;Initialize to do skeletal tracking
                nui.Initialize(RuntimeOptions.UseSkeletalTracking)
                &#39;add event to receive skeleton data
                AddHandler nui.SkeletonFrameReady, AddressOf nui_SkeletonFrameReady
                &#39;to experiment, toggle TransformSmooth between true &amp;amp; false
                &#39; parameters used to smooth the skeleton data
                nui.SkeletonEngine.TransformSmooth = True
                Dim parameters As New TransformSmoothParameters()
                parameters.Smoothing = 0.7f
                parameters.Correction = 0.3f
                parameters.Prediction = 0.4f
                parameters.JitterRadius = 1.0f
                parameters.MaxDeviationRadius = 0.5f
                nui.SkeletonEngine.SmoothParameters = parameters
            End If
        End Sub
 </description>
	<link></link>
	<language>en</language>
	<pubDate>Thu, 23 May 2013 19:22:33 GMT</pubDate>
	<lastBuildDate>Thu, 23 May 2013 19:22:33 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[Superb. Microsoft is back.<p>posted by Alex</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634438432020000000</link>
		<pubDate>Thu, 16 Jun 2011 17:46:42 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634438432020000000</guid>
		<dc:creator>Alex</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[Muito bom isto&#33;<br>Abre novas e incr&#237;veis possibilidades&#33;&#33;&#33;<br><br>Testarei assim que puder&#33;<p>posted by Bruno Alves</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634438569830000000</link>
		<pubDate>Thu, 16 Jun 2011 21:36:23 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634438569830000000</guid>
		<dc:creator>Bruno Alves</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[cant wait to play with all this&#33; thank you<p>posted by adam</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634438572610000000</link>
		<pubDate>Thu, 16 Jun 2011 21:41:01 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634438572610000000</guid>
		<dc:creator>adam</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[Well done, Dan&#33; You make it look very easy - I can&#39;t wait to try it out&#33;<p>posted by Michael Scherotter</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634438634810000000</link>
		<pubDate>Thu, 16 Jun 2011 23:24:41 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634438634810000000</guid>
		<dc:creator>Michael Scherotter</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[that&#39;s too cool, i cant wait to try it myself.<p>posted by Joshy</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634438980060000000</link>
		<pubDate>Fri, 17 Jun 2011 09:00:06 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634438980060000000</guid>
		<dc:creator>Joshy</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[Can you use Kinect directly from a Silverlight app&#63;<p>posted by Chris</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634439078550000000</link>
		<pubDate>Fri, 17 Jun 2011 11:44:15 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634439078550000000</guid>
		<dc:creator>Chris</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[Great&#33; I tried the kinect and it is fantastic&#33; <p>posted by nadia</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634439165660000000</link>
		<pubDate>Fri, 17 Jun 2011 14:09:26 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634439165660000000</guid>
		<dc:creator>nadia</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[ <p>GREAT!</p><p>posted by ebraminio</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634439183340000000</link>
		<pubDate>Fri, 17 Jun 2011 14:38:54 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634439183340000000</guid>
		<dc:creator>ebraminio</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[AWESOME&#33;&#33;&#33;&#33;&#33;&#33;&#33;&#33;&#33;&#33;&#33;&#33;&#33;&#33;&#33;&#33;&#33;&#33;&#33;&#33;&#33;&#33;<p>posted by Henry ramirez</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634439237080000000</link>
		<pubDate>Fri, 17 Jun 2011 16:08:28 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634439237080000000</guid>
		<dc:creator>Henry ramirez</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[This is amazeaballs&#33; - Have already got my feet and elbow tracked etc.. awesome &#58;&#41; Will now and try some simple if statements to detect if balls are touching... all progress haha - well done and thankyou&#33;<p>posted by Ray Chambers</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634439250800000000</link>
		<pubDate>Fri, 17 Jun 2011 16:31:20 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634439250800000000</guid>
		<dc:creator>Ray Chambers</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[Just curious, is finger tracking going to become available at some point&#63;  I see loads more of potential for this if it is<p>posted by Squirrel</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634439361070000000</link>
		<pubDate>Fri, 17 Jun 2011 19:35:07 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634439361070000000</guid>
		<dc:creator>Squirrel</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[ <p>Great tutorial and had fun with Kinect. If it could only talk back to me <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-5.gif?v=c9' alt='Wink' /></p><p>posted by El Pibe</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634439437980000000</link>
		<pubDate>Fri, 17 Jun 2011 21:43:18 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634439437980000000</guid>
		<dc:creator>El Pibe</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[ <p>@<a href="/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634439437980000000">El Pibe</a>: While it technically wouldn't be through your Kinect, you can use Text-To-Speech (TTS) to have a computerized-style voice talk back to you. The TTS engine is built into Microsoft.Speech APIs</p><p>posted by Dan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634439510460000000</link>
		<pubDate>Fri, 17 Jun 2011 23:44:06 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634439510460000000</guid>
		<dc:creator>Dan</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[ <p>If two of the six skeletons are tracked... why are the other four returned?</p><p>posted by Bas</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634440739760000000</link>
		<pubDate>Sun, 19 Jun 2011 09:52:56 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634440739760000000</guid>
		<dc:creator>Bas</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[Thank you&#33;&#33;&#33;&#33;&#33;<p>posted by Carlos Bittencourt</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634440899920000000</link>
		<pubDate>Sun, 19 Jun 2011 14:19:52 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634440899920000000</guid>
		<dc:creator>Carlos Bittencourt</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[is it possible to post the complete code. I have some problems to have all this coded together... thanks&#33;<p>posted by alex</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634441042200000000</link>
		<pubDate>Sun, 19 Jun 2011 18:17:00 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634441042200000000</guid>
		<dc:creator>alex</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[ <p>@<a href="/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634441042200000000">alex</a>: Yes, the full source code is the first link in the article, posted here for your convenience - <a href="http://files.ch9.ms/coding4fun/KinectForWindowsSDKQuickstarts.zip">http://files.ch9.ms/coding4fun/KinectForWindowsSDKQuickstarts.zip</a></p><p>posted by Dan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634441078800000000</link>
		<pubDate>Sun, 19 Jun 2011 19:18:00 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634441078800000000</guid>
		<dc:creator>Dan</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[This is really great, but do you have any examples of how to do gesture tracking&#63;<p>posted by Patrick</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634441082180000000</link>
		<pubDate>Sun, 19 Jun 2011 19:23:38 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634441082180000000</guid>
		<dc:creator>Patrick</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[Nice.<p>posted by Deacon Frost</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634442311570000000</link>
		<pubDate>Tue, 21 Jun 2011 05:32:37 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634442311570000000</guid>
		<dc:creator>Deacon Frost</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[ <p>@<a href="/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634441082180000000">Patrick</a>: For some best practices watch Ali Vassigh and Arturo Toledo's talk during the Kinect SDK Beta Launch - <a href="">Designing for the Body: UX Considerations for Kinect Applications</a>&nbsp;as that discusses gestures and gesture interpretation. &nbsp;&nbsp;</p><p>posted by Dan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634442704090000000</link>
		<pubDate>Tue, 21 Jun 2011 16:26:49 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634442704090000000</guid>
		<dc:creator>Dan</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[Hi,<br><br>I can&#39;t get the Examples running. When I try to start any of the Quick Start Projects VS2010 shows an &#34;Unspecified Error&#34;. Here&#39;s the stack trace. Can anyone help me please&#33;&#63;<br><br>System.Runtime.InteropServices.COMException &#40;0x80004005&#41;&#58; Unspecified error &#40;Exception from HRESULT&#58; 0x80004005 &#40;E_FAIL&#41;&#41;<br>   at System.Runtime.InteropServices.Marshal.ThrowExceptionForHRInternal&#40;Int32 errorCode, IntPtr errorInfo&#41;<br>   at Ankh.VS.SolutionExplorer.SolutionExplorerWindow.get_SolutionExplorerFrame&#40;&#41;<br>   at Ankh.VS.SolutionExplorer.SolutionExplorerWindow.Initialize&#40;&#41;<br>   at Ankh.VS.VsActivatorCommand.OnExecute&#40;CommandEventArgs e&#41;<br>   at Ankh.Commands.CommandMapItem.OnExecute&#40;CommandEventArgs e&#41;<br>   at Ankh.Commands.CommandMapper.Execute&#40;AnkhCommand command, CommandEventArgs e&#41;<br><br><p>posted by Alex</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634443473550000000</link>
		<pubDate>Wed, 22 Jun 2011 13:49:15 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634443473550000000</guid>
		<dc:creator>Alex</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[Hi,<br><br>I&#39;ve fixed the problem. It was due to a plugin which I didn&#39;t even need and deactivated. All samples work just fine. Looking forward to play arround with the SDK &#58;&#41;<br><br>A.<p>posted by Alex</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634443494330000000</link>
		<pubDate>Wed, 22 Jun 2011 14:23:53 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634443494330000000</guid>
		<dc:creator>Alex</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[ <p>Anyone want to be a guinea pig for me? I have Pong working on my computer and am looking for someone to try my .exe.</p><p>Thanks,</p><p>Barzimeron</p><p>posted by Barzimeron</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634443500240000000</link>
		<pubDate>Wed, 22 Jun 2011 14:33:44 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634443500240000000</guid>
		<dc:creator>Barzimeron</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[when I add in the SetEllipsePosition&#40;...&#41; it gives me the error&#58;<br>&#39;Microsoft.Research.Kinect.Nui.Joint&#39; does not contain a definition for &#39;ScaleTo&#39; and no extension method &#39;ScaleTo&#39; accepting a first argument of type &#39;Microsoft.Research.Kinect.Nui.Joint&#39; could be found &#40;are you missing a using directive or an assembly reference&#63;&#41;<br><br>I added a reference to Microsoft.Research.Kinect, and Coding4Fun.Kinect.Wpf as well as the two using statements for the Microsoft Research references<br><br>Thanks, Logan<br><p>posted by Logan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634443535230000000</link>
		<pubDate>Wed, 22 Jun 2011 15:32:03 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634443535230000000</guid>
		<dc:creator>Logan</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[ <p>Exelente para realizar muchisimas aplicaciones realmente muy muy bueno<br><br>Very good for make good aplications in some way .</p><p>Im very glad to see these new hardward by Microsoft</p><p>posted by Momentum</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634444264510000000</link>
		<pubDate>Thu, 23 Jun 2011 11:47:31 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634444264510000000</guid>
		<dc:creator>Momentum</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[Great tutorial, thanks a lot.<br><br>Is there a way to get the xyz position data of the tracked joints&#63; Maybe output in a matrix in some way&#63;<br>If anyone knows how this can be done, please let me know&#33;<p>posted by Rock</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634468736930000000</link>
		<pubDate>Thu, 21 Jul 2011 19:34:53 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634468736930000000</guid>
		<dc:creator>Rock</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[What&#39;s the trick to getting&#58;<br>1&#41; The player index to activate and<br>2&#41; The joints to establish tracking&#63;<br><br>I have to gesticulate wildly to accomplish either of these, and it doesn&#39;t happen reliably.  Somehow, it doesn&#39;t seem deterministic.<p>posted by Paul</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634472947240000000</link>
		<pubDate>Tue, 26 Jul 2011 16:32:04 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634472947240000000</guid>
		<dc:creator>Paul</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[The Joint object does not seem to have the scaleTo method any more. I get compile error when n I try to use the method.<br><br>ScaleTo is not a member of &#39;Microsoft.Research.Kinect.Nui.Joint&#39;<br><p>posted by Pradeep</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634488384710000000</link>
		<pubDate>Sat, 13 Aug 2011 13:21:11 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634488384710000000</guid>
		<dc:creator>Pradeep</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[Awesome Dan,<br><br>Thank you for the samples and I have been able to create an application using this and control through hand gestures &#58;&#41;. Works great and everyone liked it. <br><br>Now cant wait for the release version of the SDK. Sure you guys must have lots of advancements.<br><br>I failed to find more information on TransformSmoothParameters and ScaleTo on how to control the distance from the sensor and still be able to render a standard size skeleton everytime.<br><br>Appreciate if you can share something on this.<br><br>Regards<br>Santhosh<p>posted by Santhosh</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634492271910000000</link>
		<pubDate>Thu, 18 Aug 2011 01:19:51 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634492271910000000</guid>
		<dc:creator>Santhosh</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[Hi, I have a problem, I try running this code sample using c &#35; and KinectForWindowsSDKQuickstarts I have the following error&#58;<br><br>WAS NullReferenceException unhandled by user code.<br><br>In the line&#58;<br><br>SetEllipsePosition &#40;headEllipse, skeleton.Joints &#91;JointID.Head&#93;&#41;&#59;<br><br>I have no problem with the other examples just this.<br><br>thanks for your help<p>posted by omar</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634493224000000000</link>
		<pubDate>Fri, 19 Aug 2011 03:46:40 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634493224000000000</guid>
		<dc:creator>omar</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[&#64;Omar - Thats because when you start the app none of the Skeletons are being tracked so the skeleton variable is null. This should fix it<br><br> &#47;&#47;set position<br>            if &#40;skeleton &#33;&#61; null&#41;<br>            &#123;<br>                SetEllipsePosition&#40;headEllipse, skeleton.Joints&#91;JointID.Head&#93;&#41;&#59;<br>                SetEllipsePosition&#40;leftEllipse, skeleton.Joints&#91;JointID.HandLeft&#93;&#41;&#59;<br>                SetEllipsePosition&#40;rightEllipse, skeleton.Joints&#91;JointID.HandRight&#93;&#41;&#59;<br>            &#125;<br><br>Cheers,<br>Firdosh<p>posted by Firdosh Tangri</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634493915290000000</link>
		<pubDate>Fri, 19 Aug 2011 22:58:49 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634493915290000000</guid>
		<dc:creator>Firdosh Tangri</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[THANK YOU  Firdosh.<br>I solved my problem. Although it seems strange that this detail was not mentioned in this tutorial.<p>posted by omar</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634494042450000000</link>
		<pubDate>Sat, 20 Aug 2011 02:30:45 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634494042450000000</guid>
		<dc:creator>omar</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[The article says &#34;A Joint position returns X,Y,Z values as explained below...&#34;<br><br>But how does one get the z position of a joint&#63;<p>posted by Thomas</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634495103890000000</link>
		<pubDate>Sun, 21 Aug 2011 07:59:49 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634495103890000000</guid>
		<dc:creator>Thomas</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[ <p><span class="hps">How do I download</span><span class="hps">Coding4Fun.Kinect.WinForm.dll</span><span>?</span></p><p>posted by omarfuzzer</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634495771130000000</link>
		<pubDate>Mon, 22 Aug 2011 02:31:53 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634495771130000000</guid>
		<dc:creator>omarfuzzer</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[<p>Thanks, these tutorials are great.</p><p>How would I go about changing the color of an ellipse with hand movement? Here's what I have so far:</p><p><pre class="brush: csharp">private void SetEllipseProperties(FrameworkElement ellipse, Joint joint)
        {
            var scaledJoint = joint.ScaleTo(640, 480, .5f, .5f);

            // change position
            Canvas.SetLeft(ellipse, scaledJoint.Position.X);
            Canvas.SetTop(ellipse, scaledJoint.Position.Y);
           
            //change color
            ellipse.Fill = someColorFunction(scaledJoint.Position.Y);
            
        }</pre></p><p>but it doesn't like ellipse.Fill. It tells me<em> &quot;System.Windows.FrameworkElement' does not contain a definition for 'Fill' and no extension method 'Fill' accepting a first argument of type 'System.Windows.FrameworkElement' could be found (are you missing a using directive or an assembly reference?)&quot;</em>, yet <a href="http://msdn.microsoft.com/en-us/library/system.windows.shapes.shape.fill.aspx">here</a>, myEllipse.Fill is directly changed.</p><p>I'm very new at this -- any help is appreciated!</p><p>Michael</p><p>posted by michaelgreenwald</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634505495986335516</link>
		<pubDate>Fri, 02 Sep 2011 08:39:58 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634505495986335516</guid>
		<dc:creator>michaelgreenwald</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[Can I see only part of skeletan for example in a sitting pose&#63;<br><p>posted by Alexey</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634515969318256043</link>
		<pubDate>Wed, 14 Sep 2011 11:35:31 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634515969318256043</guid>
		<dc:creator>Alexey</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[Say if i dont want to use the Ellipse but i want to use the mouse Cursor, how do i do this&#63;<p>posted by David</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634528119882286673</link>
		<pubDate>Wed, 28 Sep 2011 13:06:28 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634528119882286673</guid>
		<dc:creator>David</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[Yah. Got it&#33;&#33;<br>Tks alot.<br><p>posted by Hieu</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634530444643246971</link>
		<pubDate>Sat, 01 Oct 2011 05:41:04 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634530444643246971</guid>
		<dc:creator>Hieu</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[hi..<br>how do i add to track other parts..<br>not switch but to add..<br>currently the program track head,left hand &#38; right hand,<br>how do i make it track maybe, left feet &#38; right feet too&#63;<br>i actually try to add the SetEllipsePosition but it come out that it is defined more than once<p>posted by Irfan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634533492328560625</link>
		<pubDate>Tue, 04 Oct 2011 18:20:32 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634533492328560625</guid>
		<dc:creator>Irfan</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[hey guys,<br><br>this is some exciting stuff. i was trying the code out and everything works really gr8. <br>the only problem i am  facing is my application freezes after 8sec. like i can see the Ellipses moving with my movements but it just freezes after 8 secs. <br><br>please help&#33;&#33;&#33;<br>thank you&#33;&#33;<p>posted by outforce</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634534100198917229</link>
		<pubDate>Wed, 05 Oct 2011 11:13:39 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634534100198917229</guid>
		<dc:creator>outforce</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[Hi thanks for this videos but i have a question,<br>how do i get the x &#38; y coordinates&#63; as i want to use it to control the x &#38; y coordinates of the mouse cursor<br><br>Irfan<p>posted by irfan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634553569525308537</link>
		<pubDate>Fri, 28 Oct 2011 00:02:32 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634553569525308537</guid>
		<dc:creator>irfan</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[I have the same problem&#58;<br><br>Thanks, these tutorials are great.<br><br>How would I go about changing the color of an ellipse with hand movement&#63; Here&#39;s what I have so far&#58;<br><br>1<br>2<br>3<br>4<br>5<br>6<br>7<br>8<br>9<br>10<br>11<br>12<br>private void SetEllipseProperties&#40;FrameworkElement ellipse, Joint joint&#41;<br>        &#123;<br>            var scaledJoint &#61; joint.ScaleTo&#40;640, 480, .5f, .5f&#41;&#59;<br> <br>            &#47;&#47; change position<br>            Canvas.SetLeft&#40;ellipse, scaledJoint.Position.X&#41;&#59;<br>            Canvas.SetTop&#40;ellipse, scaledJoint.Position.Y&#41;&#59;<br>            <br>            &#47;&#47;change color<br>            ellipse.Fill &#61; someColorFunction&#40;scaledJoint.Position.Y&#41;&#59;<br>             <br>        &#125;<br>but it doesn&#39;t like ellipse.Fill. It tells me &#34;System.Windows.FrameworkElement&#39; does not contain a definition for &#39;Fill&#39; and no extension method &#39;Fill&#39; accepting a first argument of type &#39;System.Windows.FrameworkElement&#39; could be found &#40;are you missing a using directive or an assembly reference&#63;&#41;&#34;, yet here, myEllipse.Fill is directly changed.<br><br>I&#39;m very new at this -- any help is appreciated&#33;<br><br>Michael<p>posted by Fernando Cardenas</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634563321846541207</link>
		<pubDate>Tue, 08 Nov 2011 06:56:24 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634563321846541207</guid>
		<dc:creator>Fernando Cardenas</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[No me funciona el scaleto.<br>Pone que no se encontr&#243; el m&#233;todo ScaleTo en el joint.<p>posted by Manuel</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634564499656301694</link>
		<pubDate>Wed, 09 Nov 2011 15:39:25 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634564499656301694</guid>
		<dc:creator>Manuel</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[<p>@<a href="/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634443494330000000">Alex</a>:Can you tell me how do you solved that problem? I have the same issue and can't seem to solve it.</p><p>Thanks</p><p>posted by piresbruno</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634565717555748435</link>
		<pubDate>Fri, 11 Nov 2011 01:29:15 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634565717555748435</guid>
		<dc:creator>piresbruno</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[<p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Comment Permalink" href="/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634443494330000000">Jun 22, 2011 at 7:23&nbsp;AM</a></p><p>Hi,<br><br>I've fixed the problem. It was due to a plugin which I didn't even need and deactivated. All samples work just fine. Looking forward to play arround with the SDK <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif?v=c9' alt='Smiley' /><br><br>A.</p><p></p></div></blockquote><p></p><p>&nbsp;</p><p>Can you tell me witch plugin was giving you this problem?</p><p>Thanks</p><p>posted by piresbruno</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634568168639355689</link>
		<pubDate>Sun, 13 Nov 2011 21:34:23 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634568168639355689</guid>
		<dc:creator>piresbruno</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[Hi, I am working on project detection of suicide boombers and I need to carry out experiment in order to detect concealed device on their body, for that I am using kinect technology ,Please can any help me with their ideas in this project and how to download kinect software.<p>posted by anu7477</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634572256158154620</link>
		<pubDate>Fri, 18 Nov 2011 15:06:55 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634572256158154620</guid>
		<dc:creator>anu7477</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[Is it just me or is this example busted with Beta 2&#63; I get a FileNotFound Exception on Microsoft.Research.Kinect when the skeleton tracking starts.<p>posted by Nashtastic</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634579045101894136</link>
		<pubDate>Sat, 26 Nov 2011 11:41:50 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634579045101894136</guid>
		<dc:creator>Nashtastic</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[<p>Here is what I get:</p><p>Error&nbsp;&nbsp; &nbsp;1&nbsp;&nbsp; &nbsp;'mySkeletalTracking.MainWindow' does not contain a definition for 'Window_Unloaded' and no extension method 'Window_Unloaded' accepting a first argument of type 'mySkeletalTracking.MainWindow' could be found (are you missing a using directive or an assembly reference?)&nbsp;&nbsp; &nbsp;C:\Users\Nelson\Documents\Visual Studio 2010\Projects\mySkeletalTracking\mySkeletalTracking\MainWindow.xaml&nbsp;&nbsp; &nbsp;4&nbsp;&nbsp; &nbsp;110&nbsp;&nbsp; &nbsp;mySkeletalTracking</p><p>Can anybody help me? What am I missing?</p><p>posted by Nozue</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634584707679236995</link>
		<pubDate>Sat, 03 Dec 2011 00:59:27 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634584707679236995</guid>
		<dc:creator>Nozue</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[I am always getting a NullReferenceException for this&#58;<br><br>Dim HandRight &#61; skeleton.Joints&#40;JointID.HandRight&#41;.ScaleTo&#40;320, 240, 0.5F, 0.5F&#41;<br><br>declaration and setting HandRight to null won&#39;t help, nor did resetting the project file...<p>posted by alexM</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634588026588331970</link>
		<pubDate>Tue, 06 Dec 2011 21:10:58 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634588026588331970</guid>
		<dc:creator>alexM</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[hi<br>my programing is poor<br>can you send a project&#40;exe and source for windows 7 64bit&#41; that return skeleton.Joints to text file&#63;<br>i need it hard<br>thanks<p>posted by bijan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634590599795512581</link>
		<pubDate>Fri, 09 Dec 2011 20:39:39 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634590599795512581</guid>
		<dc:creator>bijan</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[my email is&#58;<br>bijanasb&#64;gmail.com<p>posted by bijan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634590600451372767</link>
		<pubDate>Fri, 09 Dec 2011 20:40:45 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634590600451372767</guid>
		<dc:creator>bijan</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[<p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Comment Permalink" href="/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634534100198917229">Oct 04, 2011 at 11:13&nbsp;PM</a></p><p>hey guys,<br><br>this is some exciting stuff. i was trying the code out and everything works really gr8. <br>the only problem i am facing is my application freezes after 8sec. like i can see the Ellipses moving with my movements but it just freezes after 8 secs. <br><br>please help!!!<br>thank you!!</p><p></p></div></blockquote><p></p><p>&nbsp;</p><p>Have &nbsp;the same problem. &nbsp;And it doesn't matter if it debugging session or just using .exe&nbsp;<br><br>hm...&nbsp;&nbsp;</p><p>posted by ivangolod</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634593828919605386</link>
		<pubDate>Tue, 13 Dec 2011 14:21:31 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634593828919605386</guid>
		<dc:creator>ivangolod</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[hey guys&#33;&#33; great tutorial&#33;&#33; i&#39;ve done everything exaclty as it shows here but when i try to run it it says that the &#34; reference of the object its not define as the instance of the object&#34; <br>what can be the problem&#63;&#63; thanks&#33;&#33;<p>posted by ignacio</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634596416282641647</link>
		<pubDate>Fri, 16 Dec 2011 14:13:48 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634596416282641647</guid>
		<dc:creator>ignacio</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[I have a quick question guys if its no bother. I got the project set up and it works except that after a few seconds the ellipses freeze. I would go to debug but it&#39;s kind of hard debugging movement alone. It seems as if the event handler stops firing or something. <p>posted by George</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634602967038550488</link>
		<pubDate>Sat, 24 Dec 2011 04:11:43 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634602967038550488</guid>
		<dc:creator>George</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[Just noticed my infrared light turns off at the moment the circles stop moving. I don&#39;t know what could be going on.<p>posted by George</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634602968787813528</link>
		<pubDate>Sat, 24 Dec 2011 04:14:38 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634602968787813528</guid>
		<dc:creator>George</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[Hello everybody,<br><br>i&#39;m just following the quicktutorials and they are fantastic, i had only the NullReferenceException fail but thanks to &#64;Firdosh Tangri answer now it is solved.<br><br>Thanks&#33;&#33;<br><br><p>posted by kminant</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634604563360754049</link>
		<pubDate>Mon, 26 Dec 2011 00:32:16 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634604563360754049</guid>
		<dc:creator>kminant</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[I have your problem.<br>I receive the &#34;System.NullReferenceException&#58; Object reference not set to an instance of an object.&#34; error and i dont know what to do more.<br><br>Do you know the solution&#63;<br><br>best regards<p>posted by Rui</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634606120822116940</link>
		<pubDate>Tue, 27 Dec 2011 19:48:02 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634606120822116940</guid>
		<dc:creator>Rui</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[Got everything working.  I&#39;m still learning C&#35;, but I did figure out how to add different joints, change the ellipses to rectangles and change colors, etc.<br>Now on to bigger and better things.  I&#39;d like to add a button to the window and the right hand ellipse hovers over it, that would then activate the click event &#40;like it does on the XBox&#41;.<br>I&#39;ll be working on that, but right now, I have no idea how to do it, but any suggestions would be appreciated&#33;&#33;<p>posted by Jerry</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634609653444261522</link>
		<pubDate>Sat, 31 Dec 2011 21:55:44 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634609653444261522</guid>
		<dc:creator>Jerry</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[For everybody having issues with the ScaledTo function, it&#39;s included in the &#34;Coding4Fun Kinect Toolkit&#34; located here&#58; http&#58;&#47;&#47;c4fkinect.codeplex.com&#47;<br><br>The actual code is this&#58;<br>public static Joint ScaleTo&#40;this Joint joint, int width, int height, float skeletonMaxX, float skeletonMaxY&#41;<br>&#123;<br>    Vector pos &#61; new Vector&#40;&#41;<br>    &#123;<br>        X &#61; Scale&#40;width, skeletonMaxX, joint.Position.X&#41;,<br>        Y &#61; Scale&#40;height, skeletonMaxY, -joint.Position.Y&#41;,<br>        Z &#61; joint.Position.Z,<br>        W &#61; joint.Position.W<br>     &#125;&#59;<br><br>     Joint j &#61; new Joint&#40;&#41;<br>     &#123;<br>         ID &#61; joint.ID,<br>         TrackingState &#61; joint.TrackingState,<br>         Position &#61; pos<br>     &#125;&#59;<br><br>     return j&#59;<br>&#125;<br><br>public static Joint ScaleTo&#40;this Joint joint, int width, int height&#41;<br>&#123;<br>    return ScaleTo&#40;joint, width, height, 1.0f, 1.0f&#41;&#59;<br>&#125;<br><br>private static float Scale&#40;int maxPixel, float maxSkeleton, float position&#41;<br>&#123;<br>    float value &#61; &#40;&#40;&#40;&#40;maxPixel &#47; maxSkeleton&#41; &#47; 2&#41; &#42; position&#41; &#43; &#40;maxPixel&#47;2&#41;&#41;&#59;<br>    if&#40;value &#62; maxPixel&#41;<br>        return maxPixel&#59;<br>    if&#40;value &#60; 0&#41;<br>        return 0&#59;<br>    return value&#59;<br>&#125;<br><br>Hope the formatting turns out OK.<br><p>posted by Roger</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634609766630451092</link>
		<pubDate>Sun, 01 Jan 2012 01:04:23 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634609766630451092</guid>
		<dc:creator>Roger</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[Hi Dan, I came across this webpage by for hacker who calls himself TechBitar. He got Kinect to control servos wired to an Arduino microcontroller. He used your tutorial as basis for his VB code that does the trick. <br><br>http&#58;&#47;&#47;www.instructables.com&#47;id&#47;Kinect-controls-Arduino-wired-Servos-using-Visual-&#47;<br><p>posted by Dave</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634610999555103875</link>
		<pubDate>Mon, 02 Jan 2012 11:19:15 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634610999555103875</guid>
		<dc:creator>Dave</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[Hi<br><br>when I tried to run the sample code the skeleton detection is fired even if there is no skeleton to detect. Can you tell me what the problem could be&#63;<br><br>tnx<p>posted by Vahid</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634617004232174943</link>
		<pubDate>Mon, 09 Jan 2012 10:07:03 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634617004232174943</guid>
		<dc:creator>Vahid</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[I found out what the problem was. I actually needed to put the ellipses in a canvas<p>posted by Vahid</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634617070107856497</link>
		<pubDate>Mon, 09 Jan 2012 11:56:50 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634617070107856497</guid>
		<dc:creator>Vahid</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[for those guys whose have problems with the SCALETO method... just need to write the USING for the Having4Fun dll&#33;&#33;&#33; its works&#33;&#33;&#33;<p>posted by Diego</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634626120208877911</link>
		<pubDate>Thu, 19 Jan 2012 23:20:20 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634626120208877911</guid>
		<dc:creator>Diego</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[I got your tutorial to work great.  However we are attempting to track the position and joints of a manikin with the kinect and have seen it work on occasions.  Are there any tips or tricks that you could provide to make this more reliable&#63; How does the kinect determine what is a skeleton and what is not&#63;<br><br>Thanks&#33;<p>posted by Josh</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634630124206446857</link>
		<pubDate>Tue, 24 Jan 2012 14:33:40 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634630124206446857</guid>
		<dc:creator>Josh</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[Hi, I also had the problem with the freezing video stream. In my case I had to remove the depricated &#34;Runtime nui &#61; new Runtime&#40;&#41;&#34; with &#34;Runtime nui&#59;&#34; The nui is initialized later on by the &#34;nui &#61; Runtime.Kinects&#91;0&#93;&#59;&#34; command.<br><br>Greez<p>posted by Christian</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634633656104400707</link>
		<pubDate>Sat, 28 Jan 2012 16:40:10 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634633656104400707</guid>
		<dc:creator>Christian</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[hello every i have a question ,  how can i gain the postion of one person from the video.the size of my video is 640&#42;480.  I know there is a method   Joint.Position.X  or Joint.Position.Y,  but the data of i got if not exact&#63;   This problem bothering me&#65281;I need help&#33;&#33;<br><p>posted by Hoare</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634660090501860922</link>
		<pubDate>Tue, 28 Feb 2012 06:57:30 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634660090501860922</guid>
		<dc:creator>Hoare</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[hello guies, i have a question , how can i gain the postion of one person from the video.the size of my video is 640&#42;480. I know there is a method Joint.Position.X or Joint.Position.Y, but the data of i got if not exact&#63; This problem bothering me&#65281;I need help&#33;&#33;<p>posted by Hoare</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634660091819137534</link>
		<pubDate>Tue, 28 Feb 2012 06:59:41 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634660091819137534</guid>
		<dc:creator>Hoare</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[hello every i have a question , how can i gain the postion of one person from the video.the size of my video is 640&#42;480. I know there is a method Joint.Position.X or Joint.Position.Y, but the data of i got if not exact&#63; This problem bothering me&#65281;I need help&#33;&#33; <br>Please contact me&#65292;  986461745&#64;qq.com<p>posted by Hoare</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634660096185363307</link>
		<pubDate>Tue, 28 Feb 2012 07:06:58 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634660096185363307</guid>
		<dc:creator>Hoare</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[<p>hello everyone, i have a question , how can i get the postion of one person from the video.the size of my video is 640*480. I know there is a method Joint.Position.X or Joint.Position.Y, but the data of i got is not exact? This problem bothering me！I need help!! <br>Please contact me， 986461745@qq.com</p><p>posted by Hoare</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634660097878664404</link>
		<pubDate>Tue, 28 Feb 2012 07:09:47 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634660097878664404</guid>
		<dc:creator>Hoare</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[<p>who can help!!</p><p>posted by Hoare</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634660139729996977</link>
		<pubDate>Tue, 28 Feb 2012 08:19:32 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634660139729996977</guid>
		<dc:creator>Hoare</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[Is it possible to add custom Joints on the tracked skeleton&#63;<br>Please contact me at toretorev&#64;yahoo.com<p>posted by Vlatko</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634679347863551465</link>
		<pubDate>Wed, 21 Mar 2012 13:53:06 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634679347863551465</guid>
		<dc:creator>Vlatko</dc:creator>
	</item>
	<item>
		<title>Re: Skeletal Tracking Fundamentals (Beta 2 SDK)</title>
		<description>
			<![CDATA[Hi,<br><br>I am new to Kinect SDK and C&#35; too i am trying the bellow mentioned code i am not able to atrt the kinect itself can any one please help me on this.<br><br><br>using System&#59;<br>using System.Collections.Generic&#59;<br>using System.Linq&#59;<br>using System.Text&#59;<br>using System.Windows&#59;<br>using System.Windows.Controls&#59;<br>using System.Windows.Data&#59;<br>using System.Windows.Documents&#59;<br>using System.Windows.Input&#59;<br>using System.Windows.Media&#59;<br>using System.Windows.Media.Imaging&#59;<br>using System.Windows.Navigation&#59;<br>using System.Windows.Shapes&#59;<br>using Microsoft.Kinect&#59;<br>  <br>namespace WpfApplication2<br>&#123;<br>    &#47;&#47;&#47; &#60;summary&#62;<br>    &#47;&#47;&#47; Interaction logic for MainWindow.xaml<br>    &#47;&#47;&#47; &#60;&#47;summary&#62;<br>    public partial class MainWindow &#58; Window<br>    &#123;<br>        Microsoft.Kinect.KinectSensor kinectSensor&#59;<br>        public SkeletonFrame skeletonframe&#59;<br>        bool closing &#61; false&#59;<br>        const int skeletonCount &#61; 6&#59; &#47;&#47;API always returns 6 skeleton<br>        Skeleton&#91;&#93; allSkeletons &#61; new Skeleton&#91;skeletonCount&#93;&#59;<br>        <br><br><br>        public MainWindow&#40;&#41;<br>        &#123;<br>           <br>            InitializeComponent&#40;&#41;&#59;<br>        &#125;<br><br>        private KinectSensor InitializeKinectServices&#40;KinectSensor sensor&#41;<br>        &#123;<br>            sensor.ColorStream.Enable&#40;ColorImageFormat.RgbResolution640x480Fps30&#41;&#59;<br>            sensor.DepthStream.Enable&#40;DepthImageFormat.Resolution320x240Fps30&#41;&#59;<br>          &#47;&#42;  var parameters &#61; new TransformSmoothParameters<br>            &#123;<br>                Smoothing &#61; 0.7f,<br>                Correction &#61; 0.3f,<br>                Prediction &#61; 0.4f,<br>                JitterRadius &#61; 1.0f,<br>                MaxDeviationRadius &#61; 0.5f<br>            &#125;&#59;<br>            sensor.SkeletonStream.Enable&#40;parameters&#41;&#59;&#42;&#47;<br><br>            sensor.Start&#40;&#41;&#59;<br><br><br>            sensor.AudioSource.Start&#40;&#41;&#59;<br>            return sensor&#59;<br>        &#125;<br>        private void Window_Loaded&#40;object sender, RoutedEventArgs e&#41;<br>        &#123;<br>           <br>            &#47;&#47;return sensor&#59;<br>            InitializeKinectServices&#40;kinectSensor&#41;&#59;<br>                    &#47;&#47; kinectSensor.SkeletonStream.Enable&#40;&#41;&#59;<br>           &#47;&#47; kinectSensor.SkeletonFrameReady &#43;&#61; new EventHandler&#60;SkeletonFrameReadyEventArgs&#62;&#40;KinectAllFramesReady&#41;&#59;<br>           <br>        &#125;<br><br><br>        private void KinectAllFramesReady&#40;object sender, SkeletonFrameReadyEventArgs e&#41;<br>  &#123;<br><br>      SkeletonFrame skeletonFrameData &#61; e.OpenSkeletonFrame&#40;&#41;&#59;<br>     <br>          skeletonFrameData.CopySkeletonDataTo&#40;allSkeletons&#41;&#59;<br><br>          &#47;&#47;get the first tracked skeleton<br>          Skeleton skeleton &#61; &#40;from s in allSkeletons where s.TrackingState &#61;&#61; SkeletonTrackingState.Tracked select s&#41;.FirstOrDefault&#40;&#41;&#59;<br>      <br>             SetEllipsePosition&#40;headEllipse, skeleton.Joints&#91;JointType.Head&#93; &#41;&#59;<br>             SetEllipsePosition&#40;leftEllipse, skeleton.Joints&#91;JointType.HandLeft&#93;&#41;&#59;<br>             SetEllipsePosition&#40;rightEllipse, skeleton.Joints&#91;JointType.HandRight&#93;&#41;&#59;<br><br>             <br>  &#125;<br>         private void SetEllipsePosition&#40;FrameworkElement ellipse, Joint joint&#41;<br>         &#123;<br>            <br>             Canvas.SetLeft&#40;ellipse, joint.Position.X&#41;&#59;<br>             Canvas.SetTop&#40;ellipse, joint.Position.Y&#41;&#59;<br>         &#125;<br><br>         private void Grid_Unloaded&#40;object sender, RoutedEventArgs e&#41;<br>         &#123;<br>            &#47;&#47;inectSensor.Stop&#40;&#41;&#59;<br>         &#125;<br><br>         private void Grid_Loaded&#40;object sender, RoutedEventArgs e&#41;<br>         &#123;<br>            <br>         &#125;<br><br><br><br>        <br><br>    &#125;<br><br>&#125;<p>posted by terry</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634707383060474824</link>
		<pubDate>Mon, 23 Apr 2012 00:38:26 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Skeletal-Tracking-Fundamentals#c634707383060474824</guid>
		<dc:creator>terry</dc:creator>
	</item>
</channel>
</rss>