Click or drag to resize
Accord.NET (logo)

ITemplateMatching Interface

Template matching algorithm's interface.

Namespace:  Accord.Imaging
Assembly:  Accord.Imaging (in Accord.Imaging.dll) Version: 3.8.0
Syntax
public interface ITemplateMatching
Request Example View Source
Methods
  NameDescription
Public methodProcessImage(Bitmap, Bitmap, Rectangle)
Process image looking for matchings with specified template.
Public methodProcessImage(BitmapData, BitmapData, Rectangle)
Process image looking for matchings with specified template.
Public methodProcessImage(UnmanagedImage, UnmanagedImage, Rectangle)
Process image looking for matchings with specified template.
Top
Remarks

The interface specifies set of methods, which should be implemented by different template matching algorithms - algorithms, which search for the given template in specified image.

See Also