Esempio n. 1
0
        private void DoTracking()
        {
            EmotionDetection ft = new EmotionDetection(this);

            ft.SimplePipeline();

            this.Invoke(new DoTrackingCompleted(
                            delegate
            {
                Start.Enabled    = true;
                Stop.Enabled     = false;
                MainMenu.Enabled = true;
                if (closing)
                {
                    Close();
                }
            }
                            ));
        }
Esempio n. 2
0
        private void DoTracking()
        {
            EmotionDetection ft = new EmotionDetection(this);
            ft.SimplePipeline();

            this.Invoke(new DoTrackingCompleted(
                delegate
                {
                    Start.Enabled = true;
                    Stop.Enabled = false;
                    MainMenu.Enabled = true;
                    if (closing) Close();
                }
            ));
        }