Accord.Tests.Imaging.WhitePatchTest.ApplyTest1 C# (CSharp) 메소드

ApplyTest1() 개인적인 메소드

private ApplyTest1 ( ) : void
리턴 void
        public void ApplyTest1()
        {
            Bitmap image = Accord.Imaging.Image.Clone(Properties.Resources.lena_color);

            // Create the White Patch filter
            var whitePatch = new WhitePatch();

            // Apply the filter
            Bitmap result = whitePatch.Apply(image);

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