http://www.emgu.com
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Calculates disparity for stereo-pair
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public static void cvFindStereoCorrespondence( IntPtr leftImage, IntPtr rightImage, int mode, IntPtr depthImage, int maxDisparity, double param1, double param2, double param3, double param4, double param5 ) |
Visual Basic |
---|
Public Shared Sub cvFindStereoCorrespondence ( _ leftImage As IntPtr, _ rightImage As IntPtr, _ mode As Integer, _ depthImage As IntPtr, _ maxDisparity As Integer, _ param1 As Double, _ param2 As Double, _ param3 As Double, _ param4 As Double, _ param5 As Double _ ) |
Visual C++ |
---|
public: static void cvFindStereoCorrespondence( IntPtr leftImage, IntPtr rightImage, int mode, IntPtr depthImage, int maxDisparity, double param1, double param2, double param3, double param4, double param5 ) |
Parameters
- leftImage
- Type: System..::..IntPtr
Left image of stereo pair, rectified grayscale 8-bit image
- rightImage
- Type: System..::..IntPtr
Right image of stereo pair, rectified grayscale 8-bit image
- mode
- Type: System..::..Int32
Algorithm used to find a disparity
- depthImage
- Type: System..::..IntPtr
Destination depth image, grayscale 8-bit image that codes the scaled disparity, so that the zero disparity (corresponding to the points that are very far from the cameras) maps to 0, maximum disparity maps to 255.
- maxDisparity
- Type: System..::..Int32
Maximum possible disparity. The closer the objects to the cameras, the larger value should be specified here. Too big values slow down the process significantly
- param1
- Type: System..::..Double
constant occlusion penalty
- param2
- Type: System..::..Double
constant match reward
- param3
- Type: System..::..Double
defines a highly reliable region (set of contiguous pixels whose reliability is at least param3)
- param4
- Type: System..::..Double
defines a moderately reliable region
- param5
- Type: System..::..Double
defines a slightly reliable region