Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can anyone point me to a shape recognition algorithm, preferably in C#/Java but other languages are fine too.

share|improve this question

6 Answers

up vote 23 down vote accepted

i would suggest you take a look at the AForge open source library for such things: http://code.google.com/p/aforge/ it is really awsome!

share|improve this answer
awesome find thanks a bunch – npiv Aug 3 '11 at 20:07

Have a look at Shape Contexts. They're a fairly simple and robust method of identifying shapes by comparisons between histograms.

I don't have code, but it's not hard to implement.

Here's a reference.

share|improve this answer

The Hough Transform

share|improve this answer

indeed. i've played with it a lot... also here's a watershed transform i created that will be included in the library in the future if you need it :) http://weblogs.sqlteam.com/mladenp/archive/2008/02/11/Watershed-Image-Segmentation-in-C.aspx

share|improve this answer

acctually you can use it. i've had a talk about this very issue with the author of Aforge and he said that it's OK to use it for a commercial project. so i guess you should mail and ask him yourself.

share|improve this answer

For commercial applications, especially industrial ones, the Matrox Imaging Library provides pricey but very robust algorithms for shape finding. If free or low priced options do not work out for you, and your customer is willing to pay the bill, this might be a good option.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.