Computes disparity map for the input rectified stereo pair.

Namespace: Emgu.CV.GPU
Assembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public void FindStereoCorrespondence(
	GpuImage<Gray, byte> left,
	GpuImage<Gray, byte> right,
	GpuImage<Gray, byte> disparity,
	Stream stream
)
Public Sub FindStereoCorrespondence ( _
	left As GpuImage(Of Gray, Byte), _
	right As GpuImage(Of Gray, Byte), _
	disparity As GpuImage(Of Gray, Byte), _
	stream As Stream _
)
public:
void FindStereoCorrespondence(
	GpuImage<Gray, unsigned char>^ left, 
	GpuImage<Gray, unsigned char>^ right, 
	GpuImage<Gray, unsigned char>^ disparity, 
	Stream^ stream
)

Parameters

left
GpuImage<(Of <(<'Gray, Byte>)>)>
The left single-channel, 8-bit image
right
GpuImage<(Of <(<'Gray, Byte>)>)>
The right image of the same size and the same type
disparity
GpuImage<(Of <(<'Gray, Byte>)>)>
The disparity map
stream
Stream
Use a Stream to call the function asynchronously (non-blocking) or null to call the function synchronously (blocking).

See Also