c# - Kinect skeletal data to transit to another event -


i working on project in visual studio kinect. wondering how detect skeletal data user, play sound , transit event.

this basic skeletonframeready event:

  private void kinect_skeletonframeready(object sender, skeletonframereadyeventargs e)           {               using (skeletonframe skeletonframe = e.openskeletonframe()) // open   skeleton frame               {                   if (skeletonframe != null && this.skeletondata != null) // check   frame available                   {                        skeletonframe.copyskeletondatato(this.skeletondata); //   skeletal information in frame                   }               }           }   

my goal of application use skeletal data detect user, , transit xaml file. possible? thank you time.


Comments

Popular posts from this blog

monitor web browser programmatically in Android? -

Shrink a YouTube video to responsive width -

wpf - PdfWriter.GetInstance throws System.NullReferenceException -