CudaTemplateMatching Constructor |
http://www.emgu.com
Create a Cuda template matching filter
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic CudaTemplateMatching(
DepthType depthType,
int channels,
TemplateMatchingType method,
Size blockSize = null
)
Public Sub New (
depthType As DepthType,
channels As Integer,
method As TemplateMatchingType,
Optional blockSize As Size = Nothing
)
public:
CudaTemplateMatching(
DepthType depthType,
int channels,
TemplateMatchingType method,
Size blockSize = nullptr
)
new :
depthType : DepthType *
channels : int *
method : TemplateMatchingType *
?blockSize : Size
(* Defaults:
let _blockSize = defaultArg blockSize null
*)
-> CudaTemplateMatching
Parameters
- depthType
- Type: Emgu.CV.CvEnumDepthType
The depth type of the image that will be used in the template matching - channels
- Type: SystemInt32
The number of channels of the image that will be used in the template matching - method
- Type: Emgu.CV.CvEnumTemplateMatchingType
Specifies the way the template must be compared with image regions - blockSize (Optional)
- Type: System.DrawingSize
The block size
See Also