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.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
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