小男孩‘自慰网亚洲一区二区,亚洲一级在线播放毛片,亚洲中文字幕av每天更新,黄aⅴ永久免费无码,91成人午夜在线精品,色网站免费在线观看,亚洲欧洲wwwww在线观看

分享

Roberts 算子

 學海無涯GL 2012-09-10

【轉】Roberts 算子

107人閱讀 評論(0) 收藏 舉報

Roberts 算子

計算機視覺 2009-05-17 23:32 閱讀11 評論0
字號:
Roberts 算子計算交叉差分,取兩種差分的較大值:
Roberts 算子 - illidan - illidan的博客

// Roberts 算子
// 1. pImageData 圖像數(shù)據(jù)
// 2. nWidth 圖像寬度
// 3. nHeight 圖像高度
// 4. nWidthStep 圖像行大小
BOOL Roberts(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[2 = { NULL, NULL };
for (j = 0; j < nHeight - 1; j++)
{
pLine[0 = pImageData + nWidthStep * j;
pLine[1 = pImageData + nWidthStep * (j + 1);
for (i = 0; i < nWidth - 1; i++)
{
nDx = abs(pLine[0][i - pLine[1][i+1]);
nDy = abs(pLine[1][i - pLine[0][i+1]);
nValue = nDx > nDy ? nDx : nDy;
pLine[0][i-1 = (unsigned char) nValue;
}
}
return TRUE;
}


Roberts 檢測效果:
Roberts 算子 - illidan - illidan的博客Roberts 算子 - illidan - illidan的博客

    本站是提供個人知識管理的網(wǎng)絡存儲空間,所有內容均由用戶發(fā)布,不代表本站觀點。請注意甄別內容中的聯(lián)系方式、誘導購買等信息,謹防詐騙。如發(fā)現(xiàn)有害或侵權內容,請點擊一鍵舉報。
    轉藏 分享 獻花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約