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
+1
A:
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.
Justin Peel
2010-05-25 03:46:53
THANKS Very much!!!
erjik
2010-05-25 04:37:57