开发者

Matrix of the diagonal sobel operator of size 3x3 [closed]

Closed. This question is off-topic. It is not currently accepting answers. 开发者_如何学Go

Want to improve this question? Update the question so it's on-topic for Stack Overflow.

Closed 12 years ago.

Improve this question

What is the matrix of sobel operator of size 3x3 if the operator is said to be diagonal (Left or right diagonal)? EDIT: or may be with more bigger size


The 3x3 diagonal Sobel operators are:

[[0,1,2],
 [-1,0,1],
 [-2,-1,0]]

and

[[-2,-1,0],
 [-1,0,1],
 [0,1,2]]

Hope it helps.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜