示例#1
0
        /// <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();
        }
示例#2
0
        /// <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();
        }