CudaGoodFeaturesToTrackDetectorDetect Method |
http://www.emgu.com
Find the good features to track
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic void Detect(
IInputArray image,
IOutputArray corners,
IInputArray mask = null,
Stream stream = null
)
Public Sub Detect (
image As IInputArray,
corners As IOutputArray,
Optional mask As IInputArray = Nothing,
Optional stream As Stream = Nothing
)
public:
void Detect(
IInputArray^ image,
IOutputArray^ corners,
IInputArray^ mask = nullptr,
Stream^ stream = nullptr
)
member Detect :
image : IInputArray *
corners : IOutputArray *
?mask : IInputArray *
?stream : Stream
(* Defaults:
let _mask = defaultArg mask null
let _stream = defaultArg stream null
*)
-> unit
Parameters
- image
- Type: Emgu.CVIInputArray
The input image - corners
- Type: Emgu.CVIOutputArray
The output corners - mask (Optional)
- Type: Emgu.CVIInputArray
Optional mask - stream (Optional)
- Type: Emgu.CV.CudaStream
Use a Stream to call the function asynchronously (non-blocking) or null to call the function synchronously (blocking).
See Also