http://www.emgu.com
Assembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.3.0.1416 (2.3.0.1416)
Computes disparity map for the input rectified stereo pair.
Namespace: Emgu.CV.GPUAssembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public void FindStereoCorrespondence( GpuImage<Gray, byte> left, GpuImage<Gray, byte> right, GpuImage<Gray, byte> disparity, Stream stream ) |
Visual Basic |
---|
Public Sub FindStereoCorrespondence ( _ left As GpuImage(Of Gray, Byte), _ right As GpuImage(Of Gray, Byte), _ disparity As GpuImage(Of Gray, Byte), _ stream As Stream _ ) |
Visual C++ |
---|
public: void FindStereoCorrespondence( GpuImage<Gray, unsigned char>^ left, GpuImage<Gray, unsigned char>^ right, GpuImage<Gray, unsigned char>^ disparity, Stream^ stream ) |
Parameters
- left
- Type: Emgu.CV.GPU..::..GpuImage<(Of <(<'Gray, Byte>)>)>
The left single-channel, 8-bit image
- right
- Type: Emgu.CV.GPU..::..GpuImage<(Of <(<'Gray, Byte>)>)>
The right image of the same size and the same type
- disparity
- Type: Emgu.CV.GPU..::..GpuImage<(Of <(<'Gray, Byte>)>)>
The disparity map
- stream
- Type: Emgu.CV.GPU..::..Stream
Use a Stream to call the function asynchronously (non-blocking) or null to call the function synchronously (blocking).