Reputation: 731
let's say we have an image that contain square,circle and other few object at some distance and now i want to find the length between these object using c#.
Upvotes: 0
Views: 129
Reputation: 2101
First you would need to recognize the shapes, for that I would recomend this framework. aforge.
Then for finding the distance read this blog Computer vision processing in .Net, part II
Upvotes: 2