Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Geometric Shape Recognition & Find Extreme Points in C#

Can anyone tell me how to recognize geometric shape using C#?

I have geometric shapes like triangle, hexagon, pentagon, diamond, square,parallelogram, rectangle, etc. I have drawn all these shapes using mspaint.

i have one picture box, using opendialog i am selecting any of the geometric shapes, into picturebox. I want to identify the shape of the image & extreme points. As it is hand made image, i want to draw a proper image using extreme points.

If anyone has some code or some references, then please send it to me...

I need it very very urgently.

Thanks, Riya

like image 426
Apoorv Shah Avatar asked Feb 02 '26 09:02

Apoorv Shah


1 Answers

You could try using a neural network http://www.generation5.org/content/2004/aiSomPic.asp

or Hough Transform http://www.generation5.org/content/2008/houghTransform.asp

like image 134
Phyx Avatar answered Feb 04 '26 23:02

Phyx