开发者

Image processing-Shape Recognition

I want algorithm for recognizing multiple no of shapes(Specially rectangle and squares) in a picture.Preferably I am using C# so, I am lookin开发者_StackOverflow中文版g forward for solutions in C#.


check aforgenet.... http://www.aforgenet.com/forum/


If you are looking for a library that does a lot of image processing for you there is always OpenCV. I think it is is c++ though.


You can use the Circularity algorithm as a first approach, which is very easy to compute:

C = p2/a where p is the perimeter (border area) and a is shape area.

To know how to read/write pixels quickly, take a look here

Alternatively look for shape signature algorithm available at Rafael Gonzales book. In this algorithm you compute the center of the object using central momentum, the you compute the distance between the center and each border pixel. You'll end up with a 1D signal where peaks represent bigger distance from the center. In a square, you have 4 symmetric peaks while in a rectangle 2 big peaks and 2 smaller ones.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜