Enum TemplateMatchingMethod
Specifies the way the template is compared with image regions in MatchTemplate(Arr, Arr, Arr, TemplateMatchingMethod).
Namespace: OpenCV.Net
Assembly: OpenCV.Net.dll
Syntax
public enum TemplateMatchingMethod : int
Fields
Name | Description |
---|---|
CorrelationCoefficient | Specifies that the correlaton coefficient between region and template will be used. |
CorrelationCoefficientNormed | Specifies that the normed correlaton coefficient between region and template will be used. |
CrossCorrelation | Specifies that the cross correlation between region and template will be used. |
CrossCorrelationNormed | Specifies that the normed cross correlation between region and template will be used. |
SquareDifference | Specifies that the sum of squared differences between region and template will be used. |
SquareDifferenceNormed | Specifies that the normed sum of squared differences between region and template will be used. |