<?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 - HandsTrackball - Kinect 3D object manipulation</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/coding4fun/kinect/HandsTrackball-Kinect-3D-object-manipulation/RSS"></atom:link>
	<image>
		<url>http://files.channel9.msdn.com/thumbnail/9e2dd4dc-f01b-410f-9278-cddc1b8da2ad.png</url>
		<title>Channel 9 - HandsTrackball - Kinect 3D object manipulation</title>
		<link></link>
	</image>
	<description> We&#39;ve seen XBox&#39;s flat 2D based Kinect NUI, but that&#39;s like wasting a whole &amp;quot;D&amp;quot;! We don&#39;t live in a flat world, so neither should our NUI&#39;s. Today&#39;s project responds to that and shows off controlling and manipulating 3D objects in a Kinect world. WPF 3D Manipulation with KinectI&#39;ve created an implementation of a Kinect NUI Trackball which can be used for manipulating a camera around WPF 3D scenes. This &amp;quot;HandsTrackball&amp;quot; is adapted from the Trackball class included in the source code for WPF 3DTools. The original Trackball class allows you to use the mouse to rotate around a WPF 3D scene. My HandsTrackball basically maps hand movements to what the original Trackball uses as mouse points. Some new ground rules as well as as some Kinect depth-to-screen point calculations are applied in order to make this all work. The user&#39;s left or right hand can be used to rotate around the model. When the user moves their hand, a transform is applied to the camera viewing the 3D scene (the camera moves and the objects in the scene do not move). The camera only moves if the user&#39;s hands are at least a minimum distance away from the user&#39;s torso. The user can only move the camera when their hand is deliberately extended out from their body. This is a key constraint in order to make the HandsTrackball usable. It allows the user to put their hand(s) down to stop changing the camera angle and prevents accidental movement. Project Information URL: http://kindohm.com/2011/07/05/WPF3DManipulationWithKinect.html Project Download URL: http://kindohm.com/files/Kinect3dManipulation.zip Project Source URL: http://kindohm.com/files/Kinect3dManipulation.zip     Contact Information: Blog: http://kindohm.com/posts.html &amp;nbsp; Twitter: @kindohm</description>
	<link></link>
	<language>en</language>
	<pubDate>Sun, 19 May 2013 08:00:14 GMT</pubDate>
	<lastBuildDate>Sun, 19 May 2013 08:00:14 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<item>
		<title>Re: HandsTrackball - Kinect 3D object manipulation</title>
		<description>
			<![CDATA[ <p>Wow this is probably one of the finest applications that uses the Kinect and actually is easy to use and understand.&nbsp; Great job!</p><p>posted by Algorithum</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/kinect/HandsTrackball-Kinect-3D-object-manipulation#c634475664550000000</link>
		<pubDate>Fri, 29 Jul 2011 20:00:55 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/kinect/HandsTrackball-Kinect-3D-object-manipulation#c634475664550000000</guid>
		<dc:creator>Algorithum</dc:creator>
	</item>
	<item>
		<title>Re: HandsTrackball - Kinect 3D object manipulation</title>
		<description>
			<![CDATA[This is the one what I finding. Great job. Thanks&#33;<p>posted by dhkim</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/kinect/HandsTrackball-Kinect-3D-object-manipulation#c634479563710000000</link>
		<pubDate>Wed, 03 Aug 2011 08:19:31 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/kinect/HandsTrackball-Kinect-3D-object-manipulation#c634479563710000000</guid>
		<dc:creator>dhkim</dc:creator>
	</item>
	<item>
		<title>Re: HandsTrackball - Kinect 3D object manipulation</title>
		<description>
			<![CDATA[Code have tiny error when running this.<br><br>So I move &#34;this.imageWorker &#61; new BackgroundWorker&#40;&#41;&#59;&#34; <br><br>line 45 in MainWindow.xaml.cs.<br><br>to public MainWindow&#40;&#41; &#123;&#125;, then everything work. <p>posted by dhkim</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/kinect/HandsTrackball-Kinect-3D-object-manipulation#c634481320220000000</link>
		<pubDate>Fri, 05 Aug 2011 09:07:02 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/kinect/HandsTrackball-Kinect-3D-object-manipulation#c634481320220000000</guid>
		<dc:creator>dhkim</dc:creator>
	</item>
	<item>
		<title>Re: HandsTrackball - Kinect 3D object manipulation</title>
		<description>
			<![CDATA[There is a run Error&#58; in line 35 of MainWindow.xaml.cs &#58;<br>if &#40;&#33;this.imageWorker.IsBusy&#41;, the value of &#34;imageWorker&#34; is null, why&#63; and how to solve the problem&#63; Thank you &#33;<p>posted by Roc</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/kinect/HandsTrackball-Kinect-3D-object-manipulation#c634547609601762825</link>
		<pubDate>Fri, 21 Oct 2011 02:29:20 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/kinect/HandsTrackball-Kinect-3D-object-manipulation#c634547609601762825</guid>
		<dc:creator>Roc</dc:creator>
	</item>
</channel>
</rss>