Курсовая работа: Програма обробки зображень
}
private static long MulScalar(int[] first, int[] second)
{
long res = 0;
for (int i = 0; i < first.Length; i++)
res += (first[i] * second[i]);
return res;
}
}
}
Kernel.cs
using System;
using System.Collections.Generic;
using System.Text;
namespace Kursach
{
public interface IKernel
{
int[,] Kernel
{
get;
}
string Text
{
get;
}
}
}
Kernels.cs