Sobel算法
最近看了一些Sobel算法,并试了一下,源码如下:
private void Sobel(Bitmap img) {
int width = img.Width;
int height = img.Height; int[,] Gx = new int[, ]{ {-, , },
{-, , } ,
{-, , } }; int[,] Gy = new int[, ]{ {-,-,-},
{ , , },
{ , , }}; int[,] TotalGx = new int[img.Width, img.Height];
int[,] TotalGy = new int[img.Width, img.Height];
int[,] GTotal = new int[img.Width, img.Height]; Bitmap bitmapTemp = new Bitmap(img.Width, img.Height, PixelFormat.Format24bppRgb); LockBitmap lockBitmap1 = new LockBitmap(bitmapTemp);
lockBitmap1.LockBits(); LockBitmap lockBitmap = new LockBitmap(img);
lockBitmap.LockBits();
for (int i = ; i < img.Width - ; i++)
{
for (int j = ; j < img.Height - ; j++)
{
Color a = lockBitmap.GetPixel(i - , j - );//[0][0]
Color b = lockBitmap.GetPixel(i - , j); //[0][1]
Color c = lockBitmap.GetPixel(i - , j + );//[0][2] Color d = lockBitmap.GetPixel(i, j - ); //[1][0]
Color f = lockBitmap.GetPixel(i, j); //[1][1]
Color g = lockBitmap.GetPixel(i, j + ); //[1][2] Color h = lockBitmap.GetPixel(i + , j - );//[2][0]
Color l = lockBitmap.GetPixel(i + , j); //[2][1]
Color n = lockBitmap.GetPixel(i + , j + ); //[2][2] TotalGx[i, j] = Gx[, ] * Avg(a) + Gx[, ] * Avg(b) + Gx[, ] * Avg(c)
+ Gx[, ] * Avg(d) + Gx[, ] * Avg(f) + Gx[, ] * Avg(g)
+ Gx[, ] * Avg(h) + Gx[, ] * Avg(l) + Gx[, ] * Avg(n); //if (TotalGx[i, j] < 0) { TotalGx[i, j] = 0; }
//if (TotalGx[i, j] > 255) { TotalGx[i, j] = 255; } TotalGy[i, j] = Gy[, ] * Avg(a) + Gy[, ] * Avg(b) + Gy[, ] * Avg(c)
+ Gy[, ] * Avg(d) + Gy[, ] * Avg(f) + Gy[, ] * Avg(g)
+ Gy[, ] * Avg(h) + Gy[, ] * Avg(l) + Gy[, ] * Avg(n); //if (TotalGy[i, j] < 0) { TotalGy[i, j] = 0; }
//if (TotalGy[i, j] > 255) { TotalGy[i, j] = 255; } //GTotal[i, j] = TotalGx[i, j] + TotalGy[i, j];
GTotal[i, j] = (int)Math.Sqrt(TotalGx[i, j] * TotalGx[i, j] + TotalGy[i, j] * TotalGy[i, j]); if (GTotal[i, j] >= )
{ GTotal[i, j] = ; } if (GTotal[i, j] < )
{ GTotal[i, j] = ; }
//bitmapTemp.SetPixel(i, j, Color.FromArgb(GTotal[i, j], GTotal[i ,j], GTotal[i, j]));
lockBitmap1.SetPixel(i, j, Color.FromArgb(GTotal[i, j], GTotal[i, j], GTotal[i, j]));
}
}
lockBitmap1.UnlockBits();
lockBitmap.UnlockBits();
pictureBox2.Image = lockBitmap1.GetBitmap(); }
public class LockBitmap
{
Bitmap source = null;
IntPtr Iptr = IntPtr.Zero;
BitmapData bitmapData = null; public byte[] Pixels { get; set; }
public int Depth { get; private set; }
public int Width { get; private set; }
public int Height { get; private set; } public LockBitmap(Bitmap source)
{
this.source = source;
} public Bitmap GetBitmap() { return this.source; } /// <summary>
/// Lock bitmap data
/// </summary>
public void LockBits()
{
try
{
// Get width and height of bitmap
Width = source.Width;
Height = source.Height; // get total locked pixels count
int PixelCount = Width * Height; // Create rectangle to lock
Rectangle rect = new Rectangle(, , Width, Height); // get source bitmap pixel format size
Depth = System.Drawing.Bitmap.GetPixelFormatSize(source.PixelFormat); // Check if bpp (Bits Per Pixel) is 8, 24, or 32
if (Depth != && Depth != && Depth != )
{
throw new ArgumentException("Only 8, 24 and 32 bpp images are supported.");
} // Lock bitmap and return bitmap data
bitmapData = source.LockBits(rect, ImageLockMode.ReadWrite,
source.PixelFormat); // create byte array to copy pixel values
int step = Depth / ;
Pixels = new byte[PixelCount * step];
Iptr = bitmapData.Scan0; // Copy data from pointer to array
Marshal.Copy(Iptr, Pixels, , Pixels.Length);
}
catch (Exception ex)
{
throw ex;
}
} /// <summary>
/// Unlock bitmap data
/// </summary>
public void UnlockBits()
{
try
{
// Copy data from byte array to pointer
Marshal.Copy(Pixels, , Iptr, Pixels.Length); // Unlock bitmap data
source.UnlockBits(bitmapData);
}
catch (Exception ex)
{
throw ex;
}
}
/// <summary>
/// Get the color of the specified pixel
/// </summary>
/// <param name="x"></param>
/// <param name="y"></param>
/// <returns></returns>
public Color GetPixel(int x, int y)
{
Color clr = Color.Empty; // Get color components count
int cCount = Depth / ; // Get start index of the specified pixel
int i = ((y * Width) + x) * cCount; if (i > Pixels.Length - cCount)
throw new IndexOutOfRangeException(); if (Depth == ) // For 32 bpp get Red, Green, Blue and Alpha
{
byte b = Pixels[i];
byte g = Pixels[i + ];
byte r = Pixels[i + ];
byte a = Pixels[i + ]; // a
clr = Color.FromArgb(a, r, g, b);
}
if (Depth == ) // For 24 bpp get Red, Green and Blue
{
byte b = Pixels[i];
byte g = Pixels[i + ];
byte r = Pixels[i + ];
clr = Color.FromArgb(r, g, b);
}
if (Depth == )
// For 8 bpp get color value (Red, Green and Blue values are the same)
{
byte c = Pixels[i];
clr = Color.FromArgb(c, c, c);
}
return clr;
} /// <summary>
/// Set the color of the specified pixel
/// </summary>
/// <param name="x"></param>
/// <param name="y"></param>
/// <param name="color"></param>
public void SetPixel(int x, int y, Color color)
{
// Get color components count
int cCount = Depth / ; // Get start index of the specified pixel
int i = ((y * Width) + x) * cCount; if (Depth == ) // For 32 bpp set Red, Green, Blue and Alpha
{
Pixels[i] = color.B;
Pixels[i + ] = color.G;
Pixels[i + ] = color.R;
Pixels[i + ] = color.A;
}
if (Depth == ) // For 24 bpp set Red, Green and Blue
{
Pixels[i] = color.B;
Pixels[i + ] = color.G;
Pixels[i + ] = color.R;
}
if (Depth == )
// For 8 bpp set color value (Red, Green and Blue values are the same)
{
Pixels[i] = color.B;
}
} //public Color GetPixel(int x, int y)
//{
// unsafe
// {
// byte* ptr = (byte*)Iptr;
// ptr = ptr + bitmapData.Stride * y;
// ptr += Depth * x / 8;
// Color c = Color.Empty;
// if (Depth == 32)
// {
// int a = ptr[3];
// int r = ptr[2];
// int g = ptr[1];
// int b = ptr[0];
// c = Color.FromArgb(a, r, g, b);
// }
// else if (Depth == 24)
// {
// int r = ptr[2];
// int g = ptr[1];
// int b = ptr[0];
// c = Color.FromArgb(r, g, b);
// }
// else if (Depth == 8)
// {
// int r = ptr[0];
// c = Color.FromArgb(r, r, r);
// }
// return c;
// }
//} //public void SetPixel(int x, int y, Color c)
//{
// unsafe
// {
// byte* ptr = (byte*)Iptr;
// ptr = ptr + bitmapData.Stride * y;
// ptr += Depth * x / 8;
// if (Depth == 32)
// {
// ptr[3] = c.A;
// ptr[2] = c.R;
// ptr[1] = c.G;
// ptr[0] = c.B;
// }
// else if (Depth == 24)
// {
// ptr[2] = c.R;
// ptr[1] = c.G;
// ptr[0] = c.B;
// }
// else if (Depth == 8)
// {
// ptr[2] = c.R;
// ptr[1] = c.G;
// ptr[0] = c.B;
// }
// }
//} //return data[((width * y) + x) * 4 + i];
}
效果如下:
总结:用自带的图片处理性能低下,建议使用指针或者其他图像库处理,比如OpenCV的.NET库。
Sobel算法的更多相关文章
- opencl+opencv实现sobel算法
这几天在看opencl编程指南.照着书中的样例实现了sobel算法: 1.结合opencv读取图像,保存到缓冲区中. 2.编写和编译内核.并保存显示处理后的结果. 内核: const sampler_ ...
- 14FPGA综设之图像边沿检测的sobel算法
连续学习FPGA基础课程接近一个月了,迎来第一个有难度的综合设计,图像的边沿检测算法sobel,用verilog代码实现算法功能. 一设计功能 (一设计要求) (二系统框图) 根据上面的系统,Veri ...
- sobel算法的Soc FPGA实现之框架分析(二)
重点分析一.AXI_VDMA_1 之前一直认为这个就是内含有DDR的ip核(......最近才搞懂是个啥),后来经过对FDMA的分析发现这就是个框架,通AXI总线挂载到bus总线,可以实现PL端FPG ...
- Hls平台实现sobel算法(一)
索贝尔(Sobel)算子主要用于边缘检测,根据像素点的上下.左右邻点的灰度加权差与阈值进行比较,在边缘处达到极值的方法实现边缘检测. -------------序 一.原理性运行 流水线操作,将输入图 ...
- 基于Vivado HLS在zedboard中的Sobel滤波算法实现
基于Vivado HLS在zedboard中的Sobel滤波算法实现 平台:zedboard + Webcam 工具:g++4.6 + VIVADO HLS + XILINX EDK + ...
- 每天进步一点点------Sobel算子(3)基于彩色图像边缘差分的运动目标检测算法
摘 要: 针对目前常用的运动目标提取易受到噪声影响.易出现阴影和误检漏检等情况,提出了一种基于Sobel算子的彩色边缘图像检测和帧差分相结合的检测方法.首先用Sobel算子提取视频流中连续4帧图像的 ...
- opencv算法学习
1.改变图像的亮度和对比度: 算法介绍:对每一点像素值的r,g,b,值进行乘法和加法的运算. 代码使用: ; y < image.rows; y++ ) { ; x < image.col ...
- 图像特征提取:Sobel边缘检测
前言 点和线是做图像分析时两个最重要的特征,而线条往往反映了物体的轮廓,对图像中边缘线的检测是图像分割与特征提取的基础.文章主要讨论两个实际工程中常用的边缘检测算法:Sobel边缘检测和Canny边缘 ...
- OpenCV探索之路(六):边缘检测(canny、sobel、laplacian)
边缘检测的一般步骤: 滤波--消除噪声 增强--使边界轮廓更加明显 检测--选出边缘点 Canny算法 Canny边缘检测算法被很多人推崇为当今最优秀的边缘检测算法,所以我们第一个就介绍他. open ...
随机推荐
- python3+ros+telnet+telnetlib
利用python3的telnetlib模块 远程登录ros,输入帐号密码,然后执行命令,并导出结果到txt文本: 不过实际操作这种方式不行,因为telnet导出来的文本文件,带颜色编码,根本无法看哦. ...
- 2014.8.25 CAD系统事件触发流程
各进近.离场.进场Arinc424数据录入界面在CADDataManager/UC/UCIAP(UCSID)下 UCAirport是一抽象用户控件类,在FormADHP初始化时实例化成airport控 ...
- pthread thread mutex synchronous asynchronous communication
设置进程绑定状态的函数pthread_attr_setscopepthread_attr_t 指向属性结构的指针第二个参数 绑定类型 pthread_scope_system()pthread_sco ...
- Java微信公众平台开发(十)--微信自定义菜单的创建实现
转自:http://www.cuiyongzhi.com/post/48.html 自定义菜单这个功能在我们普通的编辑模式下是可以直接在后台编辑的,但是一旦我们进入开发模式之后我们的自定义菜单就需要自 ...
- BIO与NIO、AIO的区别(转)
IO的方式通常分为几种,同步阻塞的BIO.同步非阻塞的NIO.异步非阻塞的AIO. 一.BIO 在JDK1.4出来之前,我们建立网络连接的时候采用BIO模式,需要先在服务端启动一个ServerSock ...
- 使用ssh-agent管理密钥
ssh-agent是ssh代理程序,使用ssh-agent可以方面管理私钥. ssh-agent主要使用在如下两个场景: 1.使用不同的密钥连接不同主机,每次连接都要指定私钥; 2.当私钥设置了密码, ...
- 【290】Python 模块
参考:Python 模块 目录: 1. import 语句(模块的引入) 2. from...import 语句 3. from...import * 语句 4. dir() 函数 5. Python ...
- Java多线程-新特征-信号量Semaphore
简介信号量(Semaphore),有时被称为信号灯,是在多线程环境下使用的一种设施, 它负责协调各个线程, 以保证它们能够正确.合理的使用公共资源. 概念Semaphore分为单值和多值两种,前者只能 ...
- collections、time和datetime模块
主要内容: 一.collections模块 二.time模块 三.datetime模块 1️⃣ collection模块 1.什么是collections模块.干什么用? collections模块 ...
- 闲来无事,做做Google:21 道能力倾向测试面试题
1. Solve this cryptic equation, realizing of course that values for Mand E could be interchanged. No ...