Click or drag to resize

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.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntax
public static void FindMinMaxLoc(
	IInputArray src,
	IOutputArray minMaxVals,
	IOutputArray loc,
	IInputArray mask = null,
	Stream stream = null
)

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