Data Fields |
dwFeature2DTrackerAlgorithm |
algorithm |
Tracking Algorithm defined by dwFeature2DTrackerAlgorithm . |
dwFeature2DDetectorType |
detectorType |
Type of detector that connects to the tracker, should be the same value as dwFeature2DDetectorConfig::type during detector initialization. |
float32_t |
displacementThreshold |
If difference of translation prediction between 2 adjacent KLT iteration is less than this value, it is thought the result is converged and will abort tracking iteration. Default value = 0.1F, larger value causes faster convergence, but will lose the precision.
|
bool |
enableAdaptiveWindowSizeLK |
Enable adaptive window size If enabled, the tracker will use windowSizeLK to track only at the first and the last pyramid levels, and use smaller window size at the rest pyramid levels. Valid only when algorithm = DW_FEATURE2D_TRACKER_ALGORITHM_EX or DW_FEATURE2D_TRACKER_ALGORITHM_EX_FAST
|
uint32_t |
enableSparseOutput |
Enable sparse output if set to 1. If enabled, the output feature array will contain invalid features, which can be removed by explicitly calling dwFeature2DTracker_compact
|
uint32_t |
historyCapacity |
Upper bound of history in feature history array. |
uint32_t |
imageHeight |
Height of the images that the tracker runs on. |
uint32_t |
imageWidth |
Width of the images that the tracker runs on. |
float32_t |
largeMotionKillRatio |
Features will be killed if the motion is larger than the template size times the large motion killing threshold during tracking. Valid only when algorithm = DW_FEATURE2D_TRACKER_ALGORITHM_EX or DW_FEATURE2D_TRACKER_ALGORITHM_EX_FAST
|
uint32_t |
maxFeatureCount |
Upper bound on number of features handled. |
float32_t |
maxScaleChange |
The maximum allowed scale change for the tracked points across consecutive frames. Valid only when algorithm = DW_FEATURE2D_TRACKER_ALGORITHM_EX or DW_FEATURE2D_TRACKER_ALGORITHM_EX_FAST
|
float32_t |
nccKillThreshold |
Features will be killed if the Cross Correlation Score is less than this threshold during tracking. The value should be between -1.0 and 1.0. Valid only when algorithm = DW_FEATURE2D_TRACKER_ALGORITHM_EX or DW_FEATURE2D_TRACKER_ALGORITHM_EX_FAST
|
float32_t |
nccUpdateThreshold |
Feature template will be updated if the Cross Correlation Score is less than this threshold during tracking. The value should be between -1.0 and 1.0. The value should be no less than nccKillThreshold. Valid only when algorithm = DW_FEATURE2D_TRACKER_ALGORITHM_EX
|
uint32_t |
numIterScaling |
Upper bound on number of 3-DOF translation+scaling KLT iterations per level. Valid only when algorithm = DW_FEATURE2D_TRACKER_ALGORITHM_EX or DW_FEATURE2D_TRACKER_ALGORITHM_EX_FAST
|
uint32_t |
numIterTranslationOnly |
Upper bound on number of 2-DOF translation-only KLT iterations per level. If set to zero the default value will be used. More iterations helps improve tracking results but cost more time
|
uint32_t |
numLevelTranslationOnly |
Number of levels in pyramid that will use translation-only KLT tracking, level [maxPyramidLevel - 1, maxPyramidLevel - numTranslationOnlyLevel] will use translation-only track level [maxPyramidLevel - numTranslationOnlyLevel - 1, 0] will use translation-scaling track if numTranslationOnlyLevel = 0, translation-scaling track will be applied to all levels in pyramid. Valid only when algorithm = DW_FEATURE2D_TRACKER_ALGORITHM_EX or DW_FEATURE2D_TRACKER_ALGORITHM_EX_FAST
|
dwProcessorType |
processorType |
Processor type which determines on which processor the algorithm should be executed on. Supported options are: DW_PROCESSOR_TYPE_GPU, DW_PROCESSOR_TYPE_PVA_0, DW_PROCESSOR_TYPE_PVA_1. - Note
- DW_PROCESSOR_TYPE_GPU supports DW_FEATURE2D_TRACKER_ALGORITHM_STD, and DW_FEATURE2D_TRACKER_ALGORITHM_EX
-
DW_PROCESSOR_TYPE_PVA_0/1 supports DW_FEATURE2D_TRACKER_ALGORITHM_STD, DW_FEATURE2D_TRACKER_ALGORITHM_EX
|
uint32_t |
pyramidLevelCount |
Levels of pyramid to track Valid only when algorithm = DW_FEATURE2D_TRACKER_ALGORITHM_EX or DW_FEATURE2D_TRACKER_ALGORITHM_EX_FAST. |
bool |
useHalf |
Set it to true to use half float as intermediate results during tracking It saves register usage and will be faster than full 32-bit float, but will lose a bit of precision. Valid only when algorithm = DW_FEATURE2D_TRACKER_ALGORITHM_EX or DW_FEATURE2D_TRACKER_ALGORITHM_EX_FAST
|
uint32_t |
windowSizeLK |
Window size used in the KLT tracker. Supported sizes are ** DW_FEATURE2D_TRACKER_ALGORITHM_STD: 6, 8, 10, 12, 14. ** DW_FEATURE2D_TRACKER_ALGORITHM_EX: 10, 12. ** DW_FEATURE2D_TRACKER_ALGORITHM_EX_FAST: 10, 12.
If set to zero the default value will be used. Larger window size provides better tracking results but costs more time.
|