CudaBroxOpticalFlow Constructor |
http://www.emgu.com
Create the Brox optical flow solver
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic CudaBroxOpticalFlow(
double alpha = 0.197,
double gamma = 50,
double scaleFactor = 0.8,
int innerIterations = 5,
int outerIterations = 150,
int solverIterations = 10
)
Public Sub New (
Optional alpha As Double = 0.197,
Optional gamma As Double = 50,
Optional scaleFactor As Double = 0.8,
Optional innerIterations As Integer = 5,
Optional outerIterations As Integer = 150,
Optional solverIterations As Integer = 10
)
public:
CudaBroxOpticalFlow(
double alpha = 0.197,
double gamma = 50,
double scaleFactor = 0.8,
int innerIterations = 5,
int outerIterations = 150,
int solverIterations = 10
)
new :
?alpha : float *
?gamma : float *
?scaleFactor : float *
?innerIterations : int *
?outerIterations : int *
?solverIterations : int
(* Defaults:
let _alpha = defaultArg alpha 0.197
let _gamma = defaultArg gamma 50
let _scaleFactor = defaultArg scaleFactor 0.8
let _innerIterations = defaultArg innerIterations 5
let _outerIterations = defaultArg outerIterations 150
let _solverIterations = defaultArg solverIterations 10
*)
-> CudaBroxOpticalFlow
Parameters
- alpha (Optional)
- Type: SystemDouble
Flow smoothness - gamma (Optional)
- Type: SystemDouble
Gradient constancy importance - scaleFactor (Optional)
- Type: SystemDouble
Pyramid scale factor - innerIterations (Optional)
- Type: SystemInt32
Number of lagged non-linearity iterations (inner loop) - outerIterations (Optional)
- Type: SystemInt32
Number of warping iterations (number of pyramid levels) - solverIterations (Optional)
- Type: SystemInt32
Number of linear system solver iterations
See Also