Computes the disparity map using block matching algorithm
Namespace: OpenCvSharp
Assembly: OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static void FindStereoCorrespondenceBM( CvArr left, CvArr right, CvArr disparity, CvStereoBMState state )
Parameters
- left
- Type: OpenCvSharpCvArr
The left single-channel, 8-bit image. - right
- Type: OpenCvSharpCvArr
The right image of the same size and the same type. - disparity
- Type: OpenCvSharpCvArr
The output single-channel 16-bit signed disparity map of the same size as input images. Its elements will be the computed disparities, multiplied by 16 and rounded to integer's. - state
- Type: OpenCvSharpCvStereoBMState
Stereo correspondence structure.
See Also