Ejemplo n.º 1
0
        public void Process()
        {
            RunTime runTime = new RunTime();

            if (null != _detector.ImageIn)
            {
                runTime.LogStartRunTime();
                _detector.Process();
                runTime.LogEndRunTime();
                runTime.GetRunTime(out _timeOfRun);
            }
            else
            {
                MessageBox.Show("DetectorForm: 当前无图像!");
            }
            FormRefresh(true);

            return;
        }