Ejemplo n.º 1
0
 /// <summary>
 /// Stop and Unload the Kinect Driver.
 /// </summary>
 public static void Unload()
 {
     if (Instance != null) Instance.kinectNUI.Uninitialize();
     Instance = null;
 }
Ejemplo n.º 2
0
 public static KinectHandler Get()
 {
     return Instance ??
         (Instance = new KinectHandler(true));
 }