Accord.Tests.Imaging.RobinsonEdgeDetectorTest.ApplyTest1 C# (CSharp) Method

ApplyTest1() private method

private ApplyTest1 ( ) : void
return 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);
        }