Accord.Tests.Imaging.KuwaharaTest.KuwaharaTest1 C# (CSharp) Method

KuwaharaTest1() private method

private KuwaharaTest1 ( ) : void
return void
        public void KuwaharaTest1()
        {
            Bitmap image = Accord.Imaging.Image.Clone(Properties.Resources.lena512);

            Kuwahara kuwahara = new Kuwahara();

            Bitmap result = kuwahara.Apply(image);

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