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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With