Emgu CV Library Documentation
cvCreateStereoGCState Method (numberOfDisparities, maxIters)
NamespacesEmgu.CVCvInvokecvCreateStereoGCState(Int32, Int32)

www.emgu.com/wiki
Creates the stereo correspondence structure and initializes it.
Declaration Syntax
C#Visual BasicVisual C++
public static IntPtr cvCreateStereoGCState(
	int numberOfDisparities,
	int maxIters
)
Public Shared Function cvCreateStereoGCState ( _
	numberOfDisparities As Integer, _
	maxIters As Integer _
) As IntPtr
public:
static IntPtr cvCreateStereoGCState(
	int numberOfDisparities, 
	int maxIters
)
Parameters
numberOfDisparities (Int32)
The number of disparities. The disparity search range will be state.minDisparity <= disparity < state.minDisparity + state.numberOfDisparities
maxIters (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
Return Value
The initialized stereo correspondence structure

Assembly: Emgu.CV (Module: Emgu.CV) Version: 1.5.0.0 (1.5.0.0)