CudaStereoConstantSpaceBP Constructor |
http://www.emgu.com
A Constant-Space Belief Propagation Algorithm for Stereo Matching
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic CudaStereoConstantSpaceBP(
int ndisp = 128,
int iters = 8,
int levels = 4,
int nrPlane = 4
)
Public Sub New (
Optional ndisp As Integer = 128,
Optional iters As Integer = 8,
Optional levels As Integer = 4,
Optional nrPlane As Integer = 4
)
public:
CudaStereoConstantSpaceBP(
int ndisp = 128,
int iters = 8,
int levels = 4,
int nrPlane = 4
)
new :
?ndisp : int *
?iters : int *
?levels : int *
?nrPlane : int
(* Defaults:
let _ndisp = defaultArg ndisp 128
let _iters = defaultArg iters 8
let _levels = defaultArg levels 4
let _nrPlane = defaultArg nrPlane 4
*)
-> CudaStereoConstantSpaceBP
Parameters
- ndisp (Optional)
- Type: SystemInt32
The number of disparities. Use 128 as default - iters (Optional)
- Type: SystemInt32
The number of BP iterations on each level. Use 8 as default. - levels (Optional)
- Type: SystemInt32
The number of levels. Use 4 as default - nrPlane (Optional)
- Type: SystemInt32
The number of active disparity on the first level. Use 4 as default.
See Also