views:

184

answers:

2

I have started some simple project about Text Detection in images. And one of steps in solving this problem is implementation of Edge detector. I wanted to implement Shen Castan, because it gives better results with noisy images. Problem is that I cannot find anywhere some usefull resources about this algorithm. Does anyone knows how Shan Castan works ? Or have some article about this ?

Thanks in Advance

+1  A: 

This describes both the Canny and Shen-Castan methods: http://www.comput-vision.net/Computer.vision-Advanced.Edge/

Bart Kiers
Thank you very much! This is what I am looking for.
svlada
You're welcome svlada.
Bart Kiers
+2  A: 

It's quite expensive, but if you're serious about edge detection, I'd highly recommended the book Algorithms for Image Processing and Computer Vision. It's a techniques cookbook, and also comes with a CD of C source code implementations. Here's a review that specifically mentions the Canny and Shen-Castan techniques.

ire_and_curses