Struct TrackerKCF.Params
- Namespace
- OpenCvSharp.Tracking.Legacy
- Assembly
- OpenCvSharp.dll
TrackerKCF parameters. Layout matches the native tracker_legacy_TrackerKCF_Params
bridge struct (cv::legacy::TrackerKCF::Params just re-exposes
cv::tracking::TrackerKCF::Params); the bool options are backed by
a plain int per the general Params-struct convention, not a native bool.
public struct TrackerKCF.Params
- Inherited Members
Fields
CompressedSize
feature size after compression
public int CompressedSize
Field Value
DescNpca
non-compressed descriptors: a combination of TrackerKCFMode flags
public int DescNpca
Field Value
DescPca
compressed descriptors: a combination of TrackerKCFMode flags
public int DescPca
Field Value
DetectThresh
detection confidence threshold
public float DetectThresh
Field Value
InterpFactor
linear interpolation factor for adaptation
public float InterpFactor
Field Value
Lambda
regularization
public float Lambda
Field Value
MaxPatchSize
threshold for the ROI size
public int MaxPatchSize
Field Value
OutputSigmaFactor
spatial bandwidth (proportional to target)
public float OutputSigmaFactor
Field Value
PcaLearningRate
compression learning rate
public float PcaLearningRate
Field Value
Sigma
gaussian kernel bandwidth
public float Sigma
Field Value
Properties
CompressFeature
activate the pca method to compress the features
public bool CompressFeature { readonly get; set; }
Property Value
Resize
activate the resize feature to improve the processing speed
public bool Resize { readonly get; set; }
Property Value
SplitCoeff
split the training coefficients into two matrices
public bool SplitCoeff { readonly get; set; }
Property Value
WrapKernel
wrap around the kernel values
public bool WrapKernel { readonly get; set; }