0
我有問題。我想用高斯銳化來轉換圖像,但我不知道如何創建「圖像」參數。如何在aforge中轉換圖像
這是我的代碼:
int[,] kernel = {
{ -2, -1, 0 },
{ -1, 1, 1 },
{ 0, 1, 2 } };
Convolution filter = new Convolution(kernel);
filter.ApplyInPlace(image);