/// <summary> /// opens the rgb isolation feed /// </summary> /// <param name="sender">the object</param> /// <param name="e">the routed event</param> private void RGBIso_Click(object sender, RoutedEventArgs e) { if (this.noSensor()) { return; } this.shutAnyWindows(); windowViewer = new ViewLoader("RGB Isolation"); windowViewer.Owner = this; windowViewer.Show(); }
/// <summary> /// opens the depth isolation feed /// </summary> /// <param name="sender">the object</param> /// <param name="e">the routed event</param> private void DepthIso_Click(object sender, RoutedEventArgs e) { if (this.kinectInterp.noKinect()) { return; } this.shutAnyWindows(); windowViewer = new ViewLoader("Depth Isolation"); windowViewer.Owner = this; windowViewer.Show(); }