BackgroundSubtractorKNNCreate Method
|
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic static BackgroundSubtractorKNN Create(
int history = 500,
double dist2Threshold = 400,
bool detectShadows = true
)
Public Shared Function Create (
Optional history As Integer = 500,
Optional dist2Threshold As Double = 400,
Optional detectShadows As Boolean = true
) As BackgroundSubtractorKNN
public:
static BackgroundSubtractorKNN^ Create(
int history = 500,
double dist2Threshold = 400,
bool detectShadows = true
)
static member Create :
?history : int *
?dist2Threshold : float *
?detectShadows : bool
(* Defaults:
let _history = defaultArg history 500
let _dist2Threshold = defaultArg dist2Threshold 400
let _detectShadows = defaultArg detectShadows true
*)
-> BackgroundSubtractorKNN
OpenCvSharp.BackgroundSubtractorKNN.Create = function(history, dist2Threshold, detectShadows);
Parameters
- history (Optional)
- Type: SystemInt32
- dist2Threshold (Optional)
- Type: SystemDouble
- detectShadows (Optional)
- Type: SystemBoolean
Return Value
Type:
BackgroundSubtractorKNN
See Also