http://www.emgu.com
Create a stereo disparity solver using StereoSGBM algorithm (combination of H. Hirschmuller + K. Konolige approaches)
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.4.2.1777 (2.4.2.1777)
Syntax
C# |
---|
public StereoSGBM(
int minDisparity,
int numDisparities,
int SADWindowSize,
int P1,
int P2,
int disp12MaxDiff,
int preFilterCap,
int uniquenessRatio,
int speckleWindowSize,
int speckleRange,
bool fullDP
) |
Visual Basic |
---|
Public Sub New ( _
minDisparity As Integer, _
numDisparities As Integer, _
SADWindowSize As Integer, _
P1 As Integer, _
P2 As Integer, _
disp12MaxDiff As Integer, _
preFilterCap As Integer, _
uniquenessRatio As Integer, _
speckleWindowSize As Integer, _
speckleRange As Integer, _
fullDP As Boolean _
) |
Visual C++ |
---|
public:
StereoSGBM(
int minDisparity,
int numDisparities,
int SADWindowSize,
int P1,
int P2,
int disp12MaxDiff,
int preFilterCap,
int uniquenessRatio,
int speckleWindowSize,
int speckleRange,
bool fullDP
) |
Parameters
- minDisparity
- Type: System..::..Int32
[Missing <param name="minDisparity"/> documentation for "M:Emgu.CV.StereoSGBM.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean)"]
- numDisparities
- Type: System..::..Int32
[Missing <param name="numDisparities"/> documentation for "M:Emgu.CV.StereoSGBM.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean)"]
- SADWindowSize
- Type: System..::..Int32
Set this to 0 for default
- P1
- Type: System..::..Int32
Use 0 for default
- P2
- Type: System..::..Int32
Use 0 for default
- disp12MaxDiff
- Type: System..::..Int32
Use 0 for default
- preFilterCap
- Type: System..::..Int32
Use 0 for default
- uniquenessRatio
- Type: System..::..Int32
Use 0 for default
- speckleWindowSize
- Type: System..::..Int32
Use 0 for default
- speckleRange
- Type: System..::..Int32
Use 0 for default
- fullDP
- Type: System..::..Boolean
Use false for default
See Also