CudaHarrisCorner Constructor |
http://www.emgu.com
Create a Cuda Harris Corner detector
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic CudaHarrisCorner(
DepthType srcDepth,
int srcChannels,
int blockSize,
int kSize,
double k,
BorderType borderType = BorderType.Reflect101
)
Public Sub New (
srcDepth As DepthType,
srcChannels As Integer,
blockSize As Integer,
kSize As Integer,
k As Double,
Optional borderType As BorderType = BorderType.Reflect101
)
public:
CudaHarrisCorner(
DepthType srcDepth,
int srcChannels,
int blockSize,
int kSize,
double k,
BorderType borderType = BorderType::Reflect101
)
new :
srcDepth : DepthType *
srcChannels : int *
blockSize : int *
kSize : int *
k : float *
?borderType : BorderType
(* Defaults:
let _borderType = defaultArg borderType BorderType.Reflect101
*)
-> CudaHarrisCorner
Parameters
- srcDepth
- Type: Emgu.CV.CvEnumDepthType
[Missing <param name="srcDepth"/> documentation for "M:Emgu.CV.Cuda.CudaHarrisCorner.#ctor(Emgu.CV.CvEnum.DepthType,System.Int32,System.Int32,System.Int32,System.Double,Emgu.CV.CvEnum.BorderType)"]
- srcChannels
- Type: SystemInt32
[Missing <param name="srcChannels"/> documentation for "M:Emgu.CV.Cuda.CudaHarrisCorner.#ctor(Emgu.CV.CvEnum.DepthType,System.Int32,System.Int32,System.Int32,System.Double,Emgu.CV.CvEnum.BorderType)"]
- blockSize
- Type: SystemInt32
Neighborhood size - kSize
- Type: SystemInt32
[Missing <param name="kSize"/> documentation for "M:Emgu.CV.Cuda.CudaHarrisCorner.#ctor(Emgu.CV.CvEnum.DepthType,System.Int32,System.Int32,System.Int32,System.Double,Emgu.CV.CvEnum.BorderType)"]
- k
- Type: SystemDouble
Harris detector free parameter. - borderType (Optional)
- Type: Emgu.CV.CvEnumBorderType
Boreder type, use REFLECT101 for default
See Also