CarusoSample.HeuristicsSample.DetectBackground C# (CSharp) Метод

DetectBackground() публичный статический Метод

public static DetectBackground ( String filepath ) : void
filepath String
Результат void
        public static void DetectBackground(String filepath)
        {
            Console.WriteLine("Running Heuristic Background Detector");

            var bg_color = Heuristics.DetectBackground(new Bitmap(filepath));
            Console.WriteLine("R,G,B : " + bg_color.Red + "," + bg_color.Green + "," + bg_color.Blue);
            var display = new ImageViewer(new Image<Bgr, Byte>(600, 600, bg_color),
                                          "Heuristic Background Detection Result");
            display.ShowDialog();
        }
HeuristicsSample