Click or drag to resize

CudaStereoBMFindStereoCorrespondence Method

http://www.emgu.com
Computes disparity map for the input rectified stereo pair.

Namespace:  Emgu.CV.Cuda
Assembly:  Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntax
public void FindStereoCorrespondence(
	IInputArray left,
	IInputArray right,
	IOutputArray disparity,
	Stream stream = null
)

Parameters

left
Type: Emgu.CVIInputArray
The left single-channel, 8-bit image
right
Type: Emgu.CVIInputArray
The right image of the same size and the same type
disparity
Type: Emgu.CVIOutputArray
The disparity map
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