Click or drag to resize

DenseRLOFOpticalFlow Constructor

http://www.emgu.com
Creates instance of DenseRLOFOpticalFlow

Namespace:  Emgu.CV
Assembly:  Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntax
public DenseRLOFOpticalFlow(
	RLOFOpticalFlowParameter parameter,
	float forwardBackwardThreshold,
	Size gridStep,
	DenseRLOFOpticalFlowInterpolationType interpType = DenseRLOFOpticalFlowInterpolationType.Epic,
	int epicK = 128,
	float epicSigma = 0.05f,
	float epicLambda = 999f,
	bool usePostProc = true,
	float fgsLambda = 500f,
	float fgsSigma = 1.5f
)

Parameters

parameter
Type: Emgu.CVRLOFOpticalFlowParameter
The RLOF optical flow parameters
forwardBackwardThreshold
Type: SystemSingle
Threshold for the forward backward confidence check. Use 1.0f for default
gridStep
Type: System.DrawingSize
Size of the grid to spawn the motion vectors. Use (6, 6) for default
interpType (Optional)
Type: Emgu.CVDenseRLOFOpticalFlowInterpolationType
Interpolation used to compute the dense optical flow.
epicK (Optional)
Type: SystemInt32
See Ximgproc.EdgeAwareInterpolator() K value.
epicSigma (Optional)
Type: SystemSingle
See Ximgproc.EdgeAwareInterpolator() sigma value.
epicLambda (Optional)
Type: SystemSingle
See Ximgproc.EdgeAwareInterpolator() lambda value.
usePostProc (Optional)
Type: SystemBoolean
Enables Ximgproc.fastGlobalSmootherFilter
fgsLambda (Optional)
Type: SystemSingle
See Ximgproc.EdgeAwareInterpolator().
fgsSigma (Optional)
Type: SystemSingle
See Ximgproc.EdgeAwareInterpolator().
See Also