Accord.Tests.Imaging.GrayWorldTest.ApplyTest1 C# (CSharp) Метод

ApplyTest1() приватный Метод

private ApplyTest1 ( ) : void
Результат void
        public void ApplyTest1()
        {
            Bitmap image = Accord.Imaging.Image.Clone(Properties.Resources.lena_color);

            // Create the Gray World filter
            var grayWorld = new GrayWorld();

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

            // ImageBox.Show(result);

            Assert.IsNotNull(result);
        }