图像处理-07-图像的轮廓提取-Robert算子

时间:2021-02-15 19:51:32

图像的轮廓提取-Robert算子

图像的边缘:周围像素灰度有阶跃变化或“屋顶”变化的那些像素的集合,边缘广泛存在于物体与背景之间、物体与物体之间,基元与基元之间,是图像分割的重要依据。

物体的边缘是由灰度不连续性形成的,经典的边缘提取方法是考察图像的每个像素在某个领域内灰度的变化,利用边缘邻近一阶或二阶方向倒数变化规律,用简单的方法检测边缘,这种方法称为边缘检测局部算子。

        public Bitmap Robert(Image image)
{
int width = image.Width;
int height = image.Height; Bitmap temp=new Bitmap(width,height);
Bitmap bitmap=(Bitmap)image; int x,y,p0,p1,p2,p3,result;
Color[]pixel=new Color[]; for (y = height - ; y > ; y--)
{
for (x = ; x < width - ; x++)
{
pixel[] = bitmap.GetPixel( x, y );
pixel[] = bitmap.GetPixel(x,y+);
pixel[] = bitmap.GetPixel( x + , y );
pixel[] = bitmap.GetPixel( x + , y + );
p0 = (int)(0.3 * pixel[].R + 0.59 * pixel[].G + 0.11 * pixel[].B);
p1 = (int)(0.3 * pixel[].R + 0.59 * pixel[].G + 0.11 * pixel[].B);
p2 = (int)(0.3 * pixel[].R + 0.59 * pixel[].G + 0.11 * pixel[].B);
p3 = (int)(0.3 * pixel[].R + 0.59 * pixel[].G + 0.11 * pixel[].B);
result = (int)Math.Sqrt( (p0 - p3) * (p0 - p3) + (p1 - p2) * (p1 - p2) );
if (result > )
result = ;
if (result < )
result = ;
temp.SetPixel( x, y, Color.FromArgb( result, result, result ) );
}
}
return temp;
}

图像处理-07-图像的轮廓提取-Robert算子