| CvXImgProcColorMatchTemplate Method |
Compares a color template against overlapped color image regions.
Namespace:
OpenCvSharp.XImgProc
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public static void ColorMatchTemplate(
InputArray img,
InputArray templ,
OutputArray result
)
Public Shared Sub ColorMatchTemplate (
img As InputArray,
templ As InputArray,
result As OutputArray
)
public:
static void ColorMatchTemplate(
InputArray^ img,
InputArray^ templ,
OutputArray^ result
)
static member ColorMatchTemplate :
img : InputArray *
templ : InputArray *
result : OutputArray -> unit
Parameters
- img
- Type: OpenCvSharpInputArray
Image where the search is running. It must be 3 channels image - templ
- Type: OpenCvSharpInputArray
Searched template. It must be not greater than the source image and have 3 channels - result
- Type: OpenCvSharpOutputArray
Map of comparison results. It must be single-channel 64-bit floating-point
See Also