Ravindra Bagale
Ravindra Bagale

Reputation: 17655

sobel operator or canny operator,which one gives better result

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

Answers (1)

Oli
Oli

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

Related Questions