http://www.emgu.com
Creates the stereo correspondence state and initializes it.
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public StereoGC(
int numberOfDisparities,
int maxIters
) |
Visual Basic |
---|
Public Sub New ( _
numberOfDisparities As Integer, _
maxIters As Integer _
) |
Visual C++ |
---|
public:
StereoGC(
int numberOfDisparities,
int maxIters
) |
Parameters
- numberOfDisparities
- Type: System..::..Int32
The number of disparities. The disparity search range will be state.minDisparity <= disparity < state.minDisparity + state.numberOfDisparities
- maxIters
- Type: System..::..Int32
Maximum number of iterations. On each iteration all possible (or reasonable) alpha-expansions are tried. The algorithm may terminate earlier if it could not find an alpha-expansion that decreases the overall cost function value
See Also