Reputation: 17655
I m doing project on face detection in C#.net, in some cases i got better result from sobel & in some other from canny.but in real which one is better?
Upvotes: 3
Views: 2331
Reputation: 16035
Canny is built on top of Sobel operator. Basically, it is an improvement of Sobel operator.
So I would say Canny.
Upvotes: 4