Click or drag to resize
CudaBroxOpticalFlow Constructor
http://www.emgu.com
Create the Brox optical flow solver

Namespace: Emgu.CV.Cuda
Assembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntax
public CudaBroxOpticalFlow(
	double alpha = 0.197,
	double gamma = 50,
	double scaleFactor = 0.8,
	int innerIterations = 5,
	int outerIterations = 150,
	int solverIterations = 10
)

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