Package boofcv.abst.tracker
Class ConfigCirculantTracker
java.lang.Object
boofcv.abst.tracker.ConfigCirculantTracker
- All Implemented Interfaces:
Configuration
,Serializable
Configuration for
CirculantTracker
.- See Also:
-
Field Summary
Modifier and TypeFieldDescriptiondouble
Weighting factor mixing old track image and new one.double
Regularization term.double
Maximum pixel value.double
Spatial bandwidth.double
How much padding is added around the region requested by the user.double
gaussian kernel bandwidthint
Length of size in work space image. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Checks to see if the configuration is valid.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface boofcv.struct.Configuration
serializeActiveFields, serializeInitialize
-
Field Details
-
output_sigma_factor
public double output_sigma_factorSpatial bandwidth. Proportional to target size. -
sigma
public double sigmagaussian kernel bandwidth -
lambda
public double lambdaRegularization term. -
interp_factor
public double interp_factorWeighting factor mixing old track image and new one. Effectively adjusts the rate at which it can adjust to changes in appearance. Values closer to zero slow down the rate of change. 0f is no update. 0.075f is recommended. -
maxPixelValue
public double maxPixelValueMaximum pixel value. Used to normalize image. 8-bit images are 255 -
padding
public double paddingHow much padding is added around the region requested by the user. Specified as fraction of original image. Padding of 1 = 2x original size. -
workSpace
public int workSpaceLength of size in work space image. A total of N*N points are sampled. Should be set to a power of two to maximize speed. In general, larger numbers are more stable but slower.
-
-
Constructor Details
-
ConfigCirculantTracker
public ConfigCirculantTracker(float interp_factor) -
ConfigCirculantTracker
public ConfigCirculantTracker()
-
-
Method Details
-
setTo
-
checkValidity
public void checkValidity()Description copied from interface:Configuration
Checks to see if the configuration is valid. If it is invalid, throw an exception explaining what is incorrect.- Specified by:
checkValidity
in interfaceConfiguration
-