Курсовая работа: Програма обробки зображень
get
{
return new int[,]
{ { -1, -1, -1, -1, -1},
{-1, -1, -1, -1, -1},
{-1, -1, 24, -1, -1},
{-1, -1, -1, -1, -1},
{-1, -1, -1, -1, -1}}; ;
}
}
public string Text
{
get { return "Лапласиана"; }
}
#endregion
}
class Smoothing : IKernel
{
#region IKernel Members
public int[,] Kernel
{
get
{
return new int[,]
{ { 1, 1, 1, 1, 1},
{1, 1, 1, 1, 1},
{1, 1, 0, 1, 1},
{1, 1, 1, 1, 1},
{1, 1, 1, 1, 1}};