Package boofcv.alg.tracker.klt
Class ConfigKlt
java.lang.Object
boofcv.alg.tracker.klt.ConfigKlt
- All Implemented Interfaces:
Configuration,Serializable
Configuration for
KltTracker- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionfloatDrift tolerance relative to feature's width/intDue to how the image derivative and interpolation is performed outer most pixels.intMaximum number of iterations KLT performs for each featurefloatMaximum allowed average per pixel error across the whole region.floatDeclare a feature as invalid if hte detemrinant is less than this value.floatStop iterating of the change in x and y is less than this number. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidChecks to see if the configuration is valid.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface boofcv.struct.Configuration
serializeActiveFields, serializeInitialize
-
Field Details
-
forbiddenBorder
public int forbiddenBorderDue to how the image derivative and interpolation is performed outer most pixels. Features are not allowed to overlap this close to the image's edge. WARNING: currently not used. will probably be removed. -
maxPerPixelError
public float maxPerPixelErrorMaximum allowed average per pixel error across the whole region. -
maxIterations
public int maxIterationsMaximum number of iterations KLT performs for each feature -
minDeterminant
public float minDeterminantDeclare a feature as invalid if hte detemrinant is less than this value. -
minPositionDelta
public float minPositionDeltaStop iterating of the change in x and y is less than this number. -
driftFracTol
public float driftFracTolDrift tolerance relative to feature's width/
-
-
Constructor Details
-
ConfigKlt
public ConfigKlt()
-
-
Method Details
-
checkValidity
public void checkValidity()Description copied from interface:ConfigurationChecks to see if the configuration is valid. If it is invalid, throw an exception explaining what is incorrect.- Specified by:
checkValidityin interfaceConfiguration
-
setTo
-