0

Hi I looking for solution which find real time positions of template in source image.

I find many theoretical discussions, and in this article Image comparison - fast algorithm i found Keypoint Matching technique.

Have any one any experiences with this in c# ? Some tests ? Or better some code samples ?

Community
  • 1
  • 1
David Horák
  • 5,535
  • 10
  • 53
  • 77

2 Answers2

2

Have a look at EmguCV it is a C# wrapper that will allow you to use the OpenCV library. In particular, the features2d library. Finally, here is an example to get you started.

mevatron
  • 13,911
  • 4
  • 55
  • 72
0

One improvement:

In this time is EmguCV in version 2.3.x and in this version are some changes.

And one what I found in example above is that, SURFTracker is replaced by Features2DTracker.

Here some example SurfDetector

David Horák
  • 5,535
  • 10
  • 53
  • 77