我需要为此代码提供一种替代getPixel()
的简便方法。
还有一些解释。我是图像处理的新手。
我不想使用getpixel和setpixel。
color tempPix;
srcImage
是我的Image元素。
x,y,filterx,filtery,s
是变量。
int x, y, filterx, filtery;
int s = fmat.Size / 2;
int r, g, b;
Color tempPix;
tempPix = srcImage.GetPixel(x + filterx - s, y + filtery - s);
此处而不是getPixel
我想使用其他一些东西,因为getPixel
和setPixel
稍慢一点。