C#图像处理之边缘检测(Smoothed)的方法

作者:沧海一粟…… 时间:2022-05-30 12:13:09 

本文实例讲述了C#图像处理之边缘检测(Smoothed)的方法。分享给大家供大家参考。具体如下:


//定义smoothed算子边缘检测函数
private static Bitmap smoothed(Bitmap a)
{
int w = a.Width;
int h = a.Height;
try
{
 Bitmap dstBitmap = new Bitmap(w, h, System.Drawing.Imaging.PixelFormat.Format24bppRgb);
 System.Drawing.Imaging.BitmapData srcData = a.LockBits(new Rectangle
  (0, 0, w, h), System.Drawing.Imaging.ImageLockMode.ReadOnly, System.Drawing.Imaging.PixelFormat.Format24bppRgb);
 System.Drawing.Imaging.BitmapData dstData = dstBitmap.LockBits(new Rectangle
  (0, 0, w, h), System.Drawing.Imaging.ImageLockMode.WriteOnly, System.Drawing.Imaging.PixelFormat.Format24bppRgb);
 unsafe
 {
  byte* pIn = (byte*)srcData.Scan0.ToPointer();
  byte* pOut = (byte*)dstData.Scan0.ToPointer();
  byte* p;
  int stride = srcData.Stride;
  for (int y = 0; y < h; y++)
  {
  for (int x = 0; x < w; x++)
  {
   //边缘八个点像素不变
   if (x == 0 || x == w - 1 || y == 0 || y == h - 1)
   {
   pOut[0] = pIn[0];
   pOut[1] = pIn[1];
   pOut[2] = pIn[2];
    }
   else
   {
   int r0, r1, r2, r3, r4, r5, r6, r7, r8;
   int g1, g2, g3, g4, g5, g6, g7, g8, g0;
   int b1, b2, b3, b4, b5, b6, b7, b8, b0;
   double vR, vG, vB;
   //左上
   p = pIn - stride - 3;
   r1 = p[2];
   g1 = p[1];
   b1 = p[0];
   //正上
   p = pIn - stride;
   r2 = p[2];
   g2 = p[1];
   b2 = p[0];
   //右上
   p = pIn - stride + 3;
   r3 = p[2];
   g3 = p[1];
   b3 = p[0];
   //左
   p = pIn - 3;
   r4 = p[2];
   g4 = p[1];
   b4 = p[0];
   //右
   p = pIn + 3;
   r5 = p[2];
   g5 = p[1];
   b5 = p[0];
   //左下
   p = pIn + stride - 3;
   r6 = p[2];
   g6 = p[1];
   b6 = p[0];
   //正下
   p = pIn + stride;
   r7 = p[2];
   g7 = p[1];
   b7 = p[0];
   // 右下
   p = pIn + stride + 3;
   r8 = p[2];
   g8 = p[1];
   b8 = p[0];
   //中心点
   p = pIn;
   r0 = p[2];
   g0 = p[1];
   b0 = p[0];
   //使用模板
   vR = (double)(Math.Abs(r3+r5+r8-r1-r4-r6) + Math .Abs (r1+r2+r3-r6-r7-r8));
   vG = (double)(Math.Abs(g3+g5+g8-g1-g4-g6) + Math .Abs (g1+g2+g3-g6-g7-g8));
   vB = (double)(Math.Abs(b3+b5+b8-b1-b4-b6) + Math. Abs (b1+b2+b3-b6-b7-b8));
   if (vR > 0)
   {
    vR = Math.Min(255, vR);
   }
   else
   {
    vR = Math.Max(0, vR);
   }
    if (vG > 0)
   {
    vG = Math.Min(255, vG);
   }
   else
   {
    vG = Math.Max(0, vG);
   }
    if (vB > 0)
   {
    vB = Math.Min(255, vB);
   }
   else
   {
    vB = Math.Max(0, vB);
   }
   pOut[0] = (byte)vB;
   pOut[1] = (byte)vG;
   pOut[2] = (byte)vR;
    }
   pIn += 3;
   pOut += 3;
  }
  pIn += srcData.Stride - w * 3;
  pOut += srcData.Stride - w * 3;
   }
 }
 a.UnlockBits(srcData);
 dstBitmap.UnlockBits(dstData);
  return dstBitmap;
}
catch
{
 return null;
}
}

希望本文所述对大家的C#程序设计有所帮助。

标签:C#,图像,边缘
0
投稿

猜你喜欢

  • Compose状态保存rememberSaveable原理解析

    2021-12-26 10:07:56
  • Java中try、catch的使用方法

    2021-11-08 00:48:12
  • Java面试必备之ArrayList陷阱解析

    2023-02-16 18:14:26
  • springboot解决java.lang.ArrayStoreException异常

    2023-06-24 19:22:25
  • java输入数字,输出倒序的实例

    2023-06-20 01:59:44
  • Java利用apache ftp工具实现文件上传下载和删除功能

    2022-03-17 02:04:01
  • linux下C语言中的mkdir函数与rmdir函数

    2023-07-07 14:16:16
  • java中Locks的使用详解

    2023-11-29 00:18:38
  • Springboot使用@RefreshScope注解实现配置文件的动态加载

    2022-06-11 10:06:00
  • Intellij IDEA 最全超实用快捷键整理(长期更新)

    2022-07-15 02:37:48
  • C#使用windows服务开启应用程序的方法

    2022-08-14 04:37:14
  • IDEA下Maven的pom文件导入依赖出现Auto build completed with errors的问题

    2023-04-06 07:23:31
  • SpringBoot2.x过后static下的静态资源无法访问的问题

    2023-07-07 00:21:09
  • java版微信公众平台消息接口应用示例

    2022-10-04 10:22:58
  • Java使用Optional实现优雅避免空指针异常

    2023-06-05 15:35:39
  • 详解SpringCloud Ribbon 负载均衡通过服务器名无法连接的神坑

    2021-06-01 07:28:41
  • Unity TextMeshPro实现富文本超链接默认字体追加字体

    2021-10-13 23:57:24
  • TransmittableThreadLocal解决线程间上下文传递烦恼

    2023-11-09 17:09:35
  • Android编程之防止反编译的实现方法

    2021-10-31 04:23:35
  • MyBatis快速入门

    2023-11-13 06:45:14
  • asp之家 软件编程 m.aspxhome.com