Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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

like image 535
erjik Avatar asked May 25 '10 01:05

erjik


1 Answers

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.

like image 65
Justin Peel Avatar answered Oct 15 '22 20:10

Justin Peel