Locates a template within image by histogram comparison
Namespace: OpenCvSharp
Assembly: OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public void CalcBackProjectPatch( CvArr[] image, CvArr dst, CvSize patchSize, HistogramComparison method, float factor )
Parameters
- image
- Type: OpenCvSharpCvArr
Source images (though you may pass CvMat** as well), all are of the same size and type - dst
- Type: OpenCvSharpCvArr
Destination image. - patchSize
- Type: OpenCvSharpCvSize
Size of patch slid though the source images. - method
- Type: OpenCvSharpHistogramComparison
Compasion method, passed to cvCompareHist (see description of that function). - factor
- Type: SystemSingle
Normalization factor for histograms, will affect normalization scale of destination image, pass 1. if unsure.
Return Value
Type:See Also