DenseRLOFOpticalFlow Constructor |
http://www.emgu.com
Creates instance of DenseRLOFOpticalFlow
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic 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
)
Public Sub New (
parameter As RLOFOpticalFlowParameter,
forwardBackwardThreshold As Single,
gridStep As Size,
Optional interpType As DenseRLOFOpticalFlowInterpolationType = DenseRLOFOpticalFlowInterpolationType.Epic,
Optional epicK As Integer = 128,
Optional epicSigma As Single = 0.05F,
Optional epicLambda As Single = 999F,
Optional usePostProc As Boolean = true,
Optional fgsLambda As Single = 500F,
Optional fgsSigma As Single = 1.5F
)
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
)
new :
parameter : RLOFOpticalFlowParameter *
forwardBackwardThreshold : float32 *
gridStep : Size *
?interpType : DenseRLOFOpticalFlowInterpolationType *
?epicK : int *
?epicSigma : float32 *
?epicLambda : float32 *
?usePostProc : bool *
?fgsLambda : float32 *
?fgsSigma : float32
(* Defaults:
let _interpType = defaultArg interpType DenseRLOFOpticalFlowInterpolationType.Epic
let _epicK = defaultArg epicK 128
let _epicSigma = defaultArg epicSigma 0.05f
let _epicLambda = defaultArg epicLambda 999f
let _usePostProc = defaultArg usePostProc true
let _fgsLambda = defaultArg fgsLambda 500f
let _fgsSigma = defaultArg fgsSigma 1.5f
*)
-> DenseRLOFOpticalFlow
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