<?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 - Kinect Audio Positioning</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/coding4fun/kinect/Kinect-Audio-Positioning/RSS"></atom:link>
	<image>
		<url>http://files.channel9.msdn.com/thumbnail/9d3c978d-2fe7-43a3-9764-0419f2def4ff.png</url>
		<title>Channel 9 - Kinect Audio Positioning</title>
		<link></link>
	</image>
	<description>Everyone knows the Kinect has microphones in it, but did you know there are actually four? And that you can use them to determine the position of incoming audio? Kinect Audio PositioningKinect has 4 microphones array to position the audio source using beamforming. We can get 2 angles from Kinect mic array, one is beam angle, another is estimated audio source angle. In this project KinectMicArray class, which derived from INotifyPropertyChanged, capture sound via Kinect mic array with background worker, get angles, expose properties and notify the change. These properties are used as WPF binding source to show angles of estimated sound source and beam dynamically. Project Information URL: http://kinectaudioposition.codeplex.com/ Project Download URL: http://kinectaudioposition.codeplex.com/releases/view/69637 Project Source URL: http://kinectaudioposition.codeplex.com/releases/view/69637  /// &amp;lt;summary&amp;gt;
/// Event handler to care Window loaded
/// Construct KinectMicArray and draw contents
/// &amp;lt;/summary&amp;gt;
private void Window_Loaded(object sender, RoutedEventArgs e)
{
    kinectMic = new KinectMicArray();
    kinectMic.PropertyChanged &amp;#43;= new System.ComponentModel.PropertyChangedEventHandler(kinectMic_PropertyChanged);
    DrawContents();
}
/// &amp;lt;summary&amp;gt;
/// Event handler to care KinectMicArray property changed
/// Showing angles as number for debug
/// &amp;lt;/summary&amp;gt;
/// &amp;lt;param name=&amp;quot;sender&amp;quot;&amp;gt;&amp;lt;/param&amp;gt;
/// &amp;lt;param name=&amp;quot;e&amp;quot;&amp;gt;&amp;lt;/param&amp;gt;
private void kinectMic_PropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e)
{
    KinectMicArray ka = sender as KinectMicArray;
    this.myLabel.Content = string.Format(&amp;quot;Beam = {0:F}; Source = {1:F};  &amp;quot;, ka.BeamAngleProperty, ka.SourceAngleProperty); 
}
 </description>
	<link></link>
	<language>en</language>
	<pubDate>Fri, 24 May 2013 17:29:16 GMT</pubDate>
	<lastBuildDate>Fri, 24 May 2013 17:29:16 GMT</lastBuildDate>
	<generator>Rev9</generator>
</channel>
</rss>