/// <summary>
        /// Recognition (LoadBanknotesTrain) => ImageAnalyze (PreProcess) => Recognition (DetectBanknotesResults)
        /// </summary>
        private void runToolStripMenuItem_Click(object sender, EventArgs e)
        {
            if (_pathImageMain != null)
            {
                _recognition = new Recognition();
                _recognition.LoadImagesTrain();

                Stopwatch watch = new Stopwatch();

                _imageAnalyze = new ImageAnalyze(_recognition);
                var imageResult = new Mat(_pathImageMain, LoadImageType.Color);

                watch.Start();

                _imageAnalyze.RunEvaluateImage(imageResult);

                watch.Stop();

                MessageBox.Show($"Time Evaluate: {watch.Elapsed}");
            }
            else
            {
                MessageBox.Show("Select One Image for Evaluate");
            }
        }