<?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 - Open source Kinect gesture recognition project, Kinect DTW</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/coding4fun/kinect/Open-source-Kinect-gesture-recognition-project-Kinect-DTW/RSS"></atom:link>
	<image>
		<url>http://files.channel9.msdn.com/thumbnail/c6a32147-2d1c-476c-8e52-807883e61aba.png</url>
		<title>Channel 9 - Open source Kinect gesture recognition project, Kinect DTW</title>
		<link></link>
	</image>
	<description>Seems like we&#39;re on a Gesture recording theme this week so far... Today&#39;s project provides another look at recognizing and recording gestures with the Kinect for Windows SDK. In today&#39;s we get the source to the main library too, so we can see just how the magic is done... Kinect SDK Dynamic Time Warping (DTW) Gesture RecognitionThis project allows developers to include fast, reliable and highly customizable gesture recognition in Microsoft Kinect SDK C# projects. It uses skeletal tracking and currently supports 2D vectors. Included is a gesture recorder, recognizer and sample gestures. You can save your gestures to file and we&#39;d love it if you shared your gestures with the community - share and share alike! This project is currently in setup mode and only available to project coordinators and developers. Once you have finished setting up your project you can publish it to make it available to all CodePlex visitors. I would really love it if you share the gestures you make, as well as providing feedback on the best parameter settings you have found. I&#39;m also keen for others to improve the project, so please feel free to contribute. You can use this code or any original or modified portion of it in any project that you like. We only ask that you keep the authors&#39; names in the copyright notice because a lot of thought and effort went into this. For additional information, please check out KinectDTW - open source Kinect gesture recognition project released This evening I published to Codeplex the gesture recording and recognition project I’ve been working on. Massive shout out to Rhemyst for doing most of the thinking on this. Grab it here: http://kinectdtw.codeplex.com/ Key features: Gesture recording Gesture recognition Save gestures to file Tweakable parameters for fine control of how the recognizer works Works out of the box - just run the sample app Source code available too if you want to make your own gestures Please try this out and if you find it useful I&#39;d love you to contribute to the project. There are a hundred things I can think of that could be done better but this is a great starting point for anyone who is interested in vector-based recognition with the Kinect. Project Information URL: http://kinectdtw.codeplex.com/ Project Download URL: http://kinectdtw.codeplex.com/releases/view/70946 Project Source URL: http://kinectdtw.codeplex.com/SourceControl/list/changesets  /// &amp;lt;summary&amp;gt;
/// Recognize gesture in the given sequence.
/// It will always assume that the gesture ends on the last observation of that sequence.
/// If the distance between the last observations of each sequence is too great, or if the overall DTW distance between the two sequence is too great, no gesture will be recognized.
/// &amp;lt;/summary&amp;gt;
/// &amp;lt;param name=&amp;quot;seq&amp;quot;&amp;gt;The sequence to recognise&amp;lt;/param&amp;gt;
/// &amp;lt;returns&amp;gt;The recognised gesture name&amp;lt;/returns&amp;gt;
public string Recognize(ArrayList seq)
{
     double minDist = double.PositiveInfinity;
     string classification = &amp;quot;__UNKNOWN&amp;quot;;
     for (int i = 0; i &amp;lt; _sequences.Count; i&amp;#43;&amp;#43;)
     {
         var example = (ArrayList) _sequences[i];
         ////Debug.WriteLine(Dist2((double[]) seq[seq.Count - 1], (double[]) example[example.Count - 1]));
         if (Dist2((double[]) seq[seq.Count - 1], (double[]) example[example.Count - 1]) &amp;lt; _firstThreshold)
         {
             double d = Dtw(seq, example) / example.Count;
             if (d &amp;lt; minDist)
             {
                 minDist = d;
                 classification = (string)_labels[i];
             }
         }
     }

     return (minDist &amp;lt; _globalThreshold ? classification : &amp;quot;__UNKNOWN&amp;quot;) &amp;#43; &amp;quot; &amp;quot; /*&amp;#43;minDist.ToString()*/;
}
 &amp;nbsp; Contact Information: Blog: http://rymixxx.wordpress.com Twitter: @rymix </description>
	<link></link>
	<language>en</language>
	<pubDate>Thu, 23 May 2013 20:17:20 GMT</pubDate>
	<lastBuildDate>Thu, 23 May 2013 20:17:20 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<item>
		<title>Re: Open source Kinect gesture recognition project, Kinect DTW</title>
		<description>
			<![CDATA[One thing I&#39;ve noticed is the application does not handle multiple gestures for the same name &#40;i.e. multiple samples for the same gesture&#41;.  The best way I&#39;ve found around this &#40;with out having to rewrite a lot of source&#41; is to simply make separate files with the gestures, then join all of the files together in one big file.  The only thing is before you join them, you must go in to any file &#40;that isn&#39;t root&#41; and add a 1, 2, 3 etc etc after each gesture so they are separate. <br><br>Then, in the code, simply set a switch case statement based on the string &#40;so right hand left and right hand left 1 would be the same statement&#41;.<br><br><p>posted by Alex</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/kinect/Open-source-Kinect-gesture-recognition-project-Kinect-DTW#c634516017639805360</link>
		<pubDate>Wed, 14 Sep 2011 12:56:03 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/kinect/Open-source-Kinect-gesture-recognition-project-Kinect-DTW#c634516017639805360</guid>
		<dc:creator>Alex</dc:creator>
	</item>
	<item>
		<title>Re: Open source Kinect gesture recognition project, Kinect DTW</title>
		<description>
			<![CDATA[The reason I mentioned multiple gestures with the same name is because I think of the android equivalent where you can name a gesture the same and have multiple gestures that mimic the overall gesture.<p>posted by Alex</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/kinect/Open-source-Kinect-gesture-recognition-project-Kinect-DTW#c634516018246789990</link>
		<pubDate>Wed, 14 Sep 2011 12:57:04 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/kinect/Open-source-Kinect-gesture-recognition-project-Kinect-DTW#c634516018246789990</guid>
		<dc:creator>Alex</dc:creator>
	</item>
	<item>
		<title>Re: Open source Kinect gesture recognition project, Kinect DTW</title>
		<description>
			<![CDATA[how could I analyze the gesture&#63;<br><p>posted by Faith</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/kinect/Open-source-Kinect-gesture-recognition-project-Kinect-DTW#c634518501251556072</link>
		<pubDate>Sat, 17 Sep 2011 09:55:25 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/kinect/Open-source-Kinect-gesture-recognition-project-Kinect-DTW#c634518501251556072</guid>
		<dc:creator>Faith</dc:creator>
	</item>
	<item>
		<title>Re: Open source Kinect gesture recognition project, Kinect DTW</title>
		<description>
			<![CDATA[Hi Guys,<br><br>I am a new comer in the world of kinect. I&#39;ve already installed WinSDK and WisStudio C&#43;&#43;, namely I have got everything for some dummy project with kinect and all works OK. My purpose is to create an application which can sense the human hand raised upward and at the same time it can sense a sound coming from slapping your raised hand fingers. The point is here, just this idea is part of my lab project &#40;turning on&#47;off the lamp with hand gestures and I want to use kinect sensor&#41;. Could you give me some basic suggestions&#47;directions to implement it and one more thing I need some source codes related to my project. <br><br>Thanks in advance for everybody who will be helping me, I&#39;ll appreciate all comments. <p>posted by Bek</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/kinect/Open-source-Kinect-gesture-recognition-project-Kinect-DTW#c634536607430947909</link>
		<pubDate>Sat, 08 Oct 2011 08:52:23 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/kinect/Open-source-Kinect-gesture-recognition-project-Kinect-DTW#c634536607430947909</guid>
		<dc:creator>Bek</dc:creator>
	</item>
	<item>
		<title>Re: Open source Kinect gesture recognition project, Kinect DTW</title>
		<description>
			<![CDATA[hi.<br>i&#39;m korean<br>i&#39;m korea university student major in Computer Science.<br>this semaster, my team project is making kinect application.<br>plz help me and give me useful source plz plz plz plz<br>for example. easy game or easy program or easy advice or tip.<br>i love you.<br>myfaith&#64;korea.ac.kr give me e-mail <br><p>posted by help me</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/kinect/Open-source-Kinect-gesture-recognition-project-Kinect-DTW#c634557465358554522</link>
		<pubDate>Tue, 01 Nov 2011 12:15:35 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/kinect/Open-source-Kinect-gesture-recognition-project-Kinect-DTW#c634557465358554522</guid>
		<dc:creator>help me</dc:creator>
	</item>
	<item>
		<title>Re: Open source Kinect gesture recognition project, Kinect DTW</title>
		<description>
			<![CDATA[It would help greatly if you could post where you would put that last bit of code to make it work correctly<p>posted by cgm</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/kinect/Open-source-Kinect-gesture-recognition-project-Kinect-DTW#c634576967658288327</link>
		<pubDate>Thu, 24 Nov 2011 01:59:25 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/kinect/Open-source-Kinect-gesture-recognition-project-Kinect-DTW#c634576967658288327</guid>
		<dc:creator>cgm</dc:creator>
	</item>
	<item>
		<title>Re: Open source Kinect gesture recognition project, Kinect DTW</title>
		<description>
			<![CDATA[<p>@<a href="/coding4fun/kinect/Open-source-Kinect-gesture-recognition-project-Kinect-DTW#c634576967658288327?areaType=Blogs&amp;areaName=Coding4FunKinect">cgm</a>: All the code can be found on the CodePlex Project, <a title="http://kinectdtw.codeplex.com/" href="http://kinectdtw.codeplex.com/">http://kinectdtw.codeplex.com/</a>.</p><p>posted by gduncan411</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/kinect/Open-source-Kinect-gesture-recognition-project-Kinect-DTW#c634576987542584064</link>
		<pubDate>Thu, 24 Nov 2011 02:32:34 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/kinect/Open-source-Kinect-gesture-recognition-project-Kinect-DTW#c634576987542584064</guid>
		<dc:creator>gduncan411</dc:creator>
	</item>
	<item>
		<title>Re: Open source Kinect gesture recognition project, Kinect DTW</title>
		<description>
			<![CDATA[Hey, I have a project to do where i am creating an image album, this project here would be very useful for me. However what code do i need to take in order for my project just to be able to recognize a gesture from a single file, i dont need anything else<br>Thanks<p>posted by Colm</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/kinect/Open-source-Kinect-gesture-recognition-project-Kinect-DTW#c634636287306995766</link>
		<pubDate>Tue, 31 Jan 2012 17:45:30 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/kinect/Open-source-Kinect-gesture-recognition-project-Kinect-DTW#c634636287306995766</guid>
		<dc:creator>Colm</dc:creator>
	</item>
	<item>
		<title>Re: Open source Kinect gesture recognition project, Kinect DTW</title>
		<description>
			<![CDATA[Can anyone please tellme what the numbers in output file suggest. As an example <br>&#64;Left hand wave<br>-1.1795086526498<br>1.47458695754472<br>-1.20663928612497<br>1.25547454087678<br>-1.0885620648087<br>0.588190567429521<br>0.566445231196249<br>-0.944087331128943<br>0.536893271464392<br>-1.65887393452418<br>0.530908905617062<br>-1.91468449569127<p>posted by Priyank</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/kinect/Open-source-Kinect-gesture-recognition-project-Kinect-DTW#c634646847004934174</link>
		<pubDate>Sun, 12 Feb 2012 23:05:00 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/kinect/Open-source-Kinect-gesture-recognition-project-Kinect-DTW#c634646847004934174</guid>
		<dc:creator>Priyank</dc:creator>
	</item>
	<item>
		<title>Re: Open source Kinect gesture recognition project, Kinect DTW</title>
		<description>
			<![CDATA[CHALEARN Gesture Challenge<br>First Kinect Demonstration Competition at CVPR 2012, June 2012<br><br>http&#58;&#47;&#47;gesture.chalearn.org&#47;dissemination&#47;cvpr2012<br>&#36;10,000 in prizes and up to &#36;100,000 in licensing &#40;see rules&#41;<br><br>We invite the submission of demonstration proposals for a demonstration competition of applications of gesture recognition with KinectTM. At the site of the CVPR workshop on gesture recognition, the participants will demonstrate their system and be judged by a panel of experts, who will grade them according to pre-defined criteria&#58; <br>- relevance &#40;an application of gesture recognition using KinectTM NOT limited to one-shot-learning like the gesture challenge&#41;, <br>- usefulness &#40;or, if it is a game, playfulness&#41;, <br>- technical or scientific contribution, <br>- novelty&#47;originality, and <br>- quality of implementation.<br><br>First prize&#58; USD 5000, <br>Second prize&#58; USD 3000, <br>Third prize&#58; USD 2000. <br><br>The prizes are donated by Microsoft &#40;see the rules for the &#34;qualitative evaluation&#34; of the gesture challenge http&#58;&#47;&#47;gesture.chalearn.org&#41;. To earn prizes, the participants must use a KinectTM device and the Microsoft SDK. Microsoft may also offer to license the technology of the winners for up to USD 100,000.<br><br>&#62; Register&#58; The demonstrators should subscribe to our Google group gesturechallenge.<br>&#62; Guidelines&#58; The demonstrators should send a 2-page demonstration proposal in the CVPR format &#40;see author&#39;s guidelines&#41;. They should take into account the evaluation criteria. Alternatively, the demonstrators may send a full length paper &#40;see the call for paper&#41;, but the deadline is sooner.<br>&#62; Submission&#58; The proposals should be emailed to gesture&#64;clopinet.com.<br>&#62; Deadline&#58; Tuesday May 1, 2012. <br><br>This project in sponsored in part by NSF, Pascal2, Microsoft, and Texas Instrument.<p>posted by Isabelle Guyon</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/kinect/Open-source-Kinect-gesture-recognition-project-Kinect-DTW#c634648556790031540</link>
		<pubDate>Tue, 14 Feb 2012 22:34:39 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/kinect/Open-source-Kinect-gesture-recognition-project-Kinect-DTW#c634648556790031540</guid>
		<dc:creator>Isabelle Guyon</dc:creator>
	</item>
	<item>
		<title>Re: Open source Kinect gesture recognition project, Kinect DTW</title>
		<description>
			<![CDATA[Can I check with you , where can I download the reference Microsoft research kinectmuc &#63;<p>posted by Celine</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/kinect/Open-source-Kinect-gesture-recognition-project-Kinect-DTW#c634685130866880506</link>
		<pubDate>Wed, 28 Mar 2012 06:31:26 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/kinect/Open-source-Kinect-gesture-recognition-project-Kinect-DTW#c634685130866880506</guid>
		<dc:creator>Celine</dc:creator>
	</item>
	<item>
		<title>Re: Open source Kinect gesture recognition project, Kinect DTW</title>
		<description>
			<![CDATA[<p>has this app been updated to v1 sdk?</p><p>posted by lantonis</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/kinect/Open-source-Kinect-gesture-recognition-project-Kinect-DTW#c634696473673504268</link>
		<pubDate>Tue, 10 Apr 2012 09:36:07 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/kinect/Open-source-Kinect-gesture-recognition-project-Kinect-DTW#c634696473673504268</guid>
		<dc:creator>lantonis</dc:creator>
	</item>
	<item>
		<title>Re: Open source Kinect gesture recognition project, Kinect DTW</title>
		<description>
			<![CDATA[<p>@<a href="/coding4fun/kinect/Open-source-Kinect-gesture-recognition-project-Kinect-DTW#c634696473673504268?areaType=Blogs&amp;areaName=Coding4FunKinect">lantonis</a>:In checking the project site, <a href="http://kinectdtw.codeplex.com/">http://kinectdtw.codeplex.com/</a>, no it doesn't look like it has been. But the source is there for an enterprising updater...</p><p>posted by gduncan411</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/kinect/Open-source-Kinect-gesture-recognition-project-Kinect-DTW#c634696618304908759</link>
		<pubDate>Tue, 10 Apr 2012 13:37:10 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/kinect/Open-source-Kinect-gesture-recognition-project-Kinect-DTW#c634696618304908759</guid>
		<dc:creator>gduncan411</dc:creator>
	</item>
	<item>
		<title>Re: Open source Kinect gesture recognition project, Kinect DTW</title>
		<description>
			<![CDATA[<p>@<a href="/coding4fun/kinect/Open-source-Kinect-gesture-recognition-project-Kinect-DTW#c634696473673504268?areaType=Blogs&amp;areaName=Coding4FunKinect">lantonis</a>: Yes, now it has, by the community. Check out <span><a href="http://social.msdn.microsoft.com/Forums/en-US/kinectsdknuiapi/thread/9c069e50-fffa-4ffc-87b7-d3a1cef34aab">Updates for Kinect DTW Gesture Recognition framework using new SDK 1.0</a>&nbsp;</span></p><p><span>Also of note is that a patch was uploaded to the project by someone else in the community that updates it to v1, <a href="http://kinectdtw.codeplex.com/SourceControl/list/patches">http://kinectdtw.codeplex.com/SourceControl/list/patches</a></span></p><p>posted by gduncan411</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/kinect/Open-source-Kinect-gesture-recognition-project-Kinect-DTW#c634705392456763264</link>
		<pubDate>Fri, 20 Apr 2012 17:20:45 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/kinect/Open-source-Kinect-gesture-recognition-project-Kinect-DTW#c634705392456763264</guid>
		<dc:creator>gduncan411</dc:creator>
	</item>
	<item>
		<title>Re: Open source Kinect gesture recognition project, Kinect DTW</title>
		<description>
			<![CDATA[I need some example code of how to use this library in my proyect to recognize a swip gesture and react in consecuence<br>Where can i find it&#63;<br>Thanks&#33;<p>posted by Leandro</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/kinect/Open-source-Kinect-gesture-recognition-project-Kinect-DTW#c634769143815109586</link>
		<pubDate>Tue, 03 Jul 2012 12:13:01 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/kinect/Open-source-Kinect-gesture-recognition-project-Kinect-DTW#c634769143815109586</guid>
		<dc:creator>Leandro</dc:creator>
	</item>
	<item>
		<title>Re: Open source Kinect gesture recognition project, Kinect DTW</title>
		<description>
			<![CDATA[Check this site out which offers free Gesture Recognition API to use with your kinect<br>http&#58;&#47;&#47;grecogntionkinect.blogspot.com&#47;<p>posted by Sheldon</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/kinect/Open-source-Kinect-gesture-recognition-project-Kinect-DTW#c634775801988667952</link>
		<pubDate>Wed, 11 Jul 2012 05:09:58 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/kinect/Open-source-Kinect-gesture-recognition-project-Kinect-DTW#c634775801988667952</guid>
		<dc:creator>Sheldon</dc:creator>
	</item>
</channel>
</rss>