Accord.Tests.Imaging.RobinsonEdgeDetectorTest.ApplyTest1 C# (CSharp) Méthode

ApplyTest1() private méthode

private ApplyTest1 ( ) : void
Résultat void
        public void ApplyTest1()
        {
            Bitmap image = Accord.Imaging.Image.Clone(Properties.Resources.lena512);

            RobinsonEdgeDetector robinson = new RobinsonEdgeDetector();

            Bitmap edges = robinson.Apply(image);

            // ImageBox.Show(edges);
            Assert.IsNotNull(edges);
        }