原创 Prewitt 算子

2009-2-23 22:14 9467 7 7 分类: 软件与OS

    Prewitt 算子采用以下算子分别计算一阶 x 方向和 y 方向的图像差分:




-101
-101
-101

-1-1-1
000
111
#include <math.h>
// Prewitt 算子
// 1. pImageData   图像数据
// 2. nWidth       图像宽度
// 3. nHeight      图像高度
// 4. nWidthStep   图像行大小
BOOL Prewitt(unsigned char *pImageData, int nWidth, int nHeight, int nWidthStep)
{
    int            i            = 0;
    int            j            = 0;
    int            nDx          = 0;
    int            nDy          = 0;
    int            nValue       = 0;
    unsigned char *pLine[3]     = { NULL, NULL, NULL };
    for (j = 1; j < nHeight - 1; j++)
    {
        pLine[0]  = pImageData + nWidthStep * (j - 1);
        pLine[1]  = pImageData + nWidthStep * j;
        pLine[2]  = pImageData + nWidthStep * (j + 1);
        for (i = 1; i < nWidth - 1; i++)
        {
            nDx =
                pLine[0][i+1] - pLine[0][i-1] +
                pLine[1][i+1] - pLine[1][i-1] +
                pLine[2][i+1] - pLine[2][i-1];
            nDy =
                pLine[2][i-1] - pLine[0][i-1] +
                pLine[2]   - pLine[0]   +
                pLine[2][i+1] - pLine[0][i+1];
            nValue = (int) sqrt((float) (nDx * nDx + nDy * nDy));
            if (nValue > 0xFF)
            {
                nValue = 0xFF;
            }
            pLine[0][i-1] = (unsigned char) nValue;
        }
    }
    return TRUE;
}

Prewitt 边缘检测效果:



69d0dbfa-2f5c-4529-b361-1502c63ab7a6.jpg3076516c-f7f0-4923-9fa8-f90ae2881e7b.jpg

文章评论0条评论)

登录后参与讨论
我要评论
0
7
关闭 站长推荐上一条 /2 下一条