/*以下算法参考李兰友老师的《Visual C#图象处理设计实例》 */
Bitmap box1= new Bitmap(pictureBox1.Image);
for (int i=0;i<pictureBox1.Image.Width-1;i++)
{
for(int j=0;j<pictureBox1.Image.Height-1;j++)
{
Color Color1=box1.GetPixel(i,j);
Color Color2=box1.GetPixel(i+1,j+1);
int red=Math.Abs(Color1.R-Color2.R+128);
int green=Math.Abs(Color1.G-Color2.G+128);
int blue=Math.Abs(Color1.B-Color2.B+128);
if(red>255) red=255;
if(red<0) red=0;
if(green>255) green=255;
if(green<0) green=0;
if(blue>255) blue=255;
if(blue<0) blue=0;
box1.SetPixel(i,j,Color.FromArgb(red,green,blue));
}
pictureBox2.Refresh();
pictureBox2.Image=box1;
}
说明:这个程序运行也需要很长时间!很讨厌的!