图象处理算法(c#实现)--浮雕

/*以下算法参考李兰友老师的《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;
   }

说明:这个程序运行也需要很长时间!很讨厌的!
 

评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值