public void Test2() { double[,] matrix0 = new double[size0, size1]; double[,] matrix1 = new double[size0, size1]; ImageSource.AddNoise(matrix1, 1); double q1 = ImageSource.std(matrix0, matrix1); ImageSource.smooth(matrix1, 5); double q2 = ImageSource.std(matrix0, matrix1); }