CudaInvokeFindMinMaxLoc Method |
http://www.emgu.com
Finds global minimum and maximum matrix elements and returns their values with locations.
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic static void FindMinMaxLoc(
IInputArray src,
IOutputArray minMaxVals,
IOutputArray loc,
IInputArray mask = null,
Stream stream = null
)
Public Shared Sub FindMinMaxLoc (
src As IInputArray,
minMaxVals As IOutputArray,
loc As IOutputArray,
Optional mask As IInputArray = Nothing,
Optional stream As Stream = Nothing
)
public:
static void FindMinMaxLoc(
IInputArray^ src,
IOutputArray^ minMaxVals,
IOutputArray^ loc,
IInputArray^ mask = nullptr,
Stream^ stream = nullptr
)
static member FindMinMaxLoc :
src : IInputArray *
minMaxVals : IOutputArray *
loc : IOutputArray *
?mask : IInputArray *
?stream : Stream
(* Defaults:
let _mask = defaultArg mask null
let _stream = defaultArg stream null
*)
-> unit
Parameters
- src
- Type: Emgu.CVIInputArray
Single-channel source image. - minMaxVals
- Type: Emgu.CVIOutputArray
The output min and max values - loc
- Type: Emgu.CVIOutputArray
The ouput min and max locations - mask (Optional)
- Type: Emgu.CVIInputArray
Optional mask to select a sub-matrix. - 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