Data Fields |
bool |
autoGenerateFeatureID |
Determines whether the detector generates unique feature ids for new detections automatically. If set to true, each new detected features will be assigned with a unique feature id. If set to false, dwFeatureArray::ids will be kept. Default is true.
|
uint32_t |
blockSize |
for DW_PROCESSOR_TYPE_PVA_0 or DW_PROCESSOR_TYPE_PVA_1 only Block window size used to compute the Harris Corner score. Must be 3, 5 or 7.
|
uint32_t |
cellSize |
Cell size in pixel to split the image into cells. Must be an integer multiplicaiton of 4
|
float32_t |
detailThreshold |
for DW_FEATURE2D_DETECTOR_TYPE_STD only features in the cell that have scores higher than this value will be considered as high frequency point and will always be outputed. If set it <= detectorScoreThreshold, all features detected are high frequency and the next numEvenDistributionPerCell will be invalid
|
uint32_t |
detectionLevel |
for DW_FEATURE2D_DETECTOR_TYPE_EX only STD detector always detects on level 0 pyramid image. Level at which features are detected Default to one (half of original image resolution)
|
float32_t |
gaussianMaskCenterX |
for DW_FEATURE2D_DETECTOR_TYPE_EX only Ignored when not using DW_FEATURE2D_SELECTION_MASK_TYPE_GAUSSIAN The center X of the Gaussian mask, range: [0.0f, 1.0f]
|
float32_t |
gaussianMaskCenterY |
for DW_FEATURE2D_DETECTOR_TYPE_EX only Ignored when not using DW_FEATURE2D_SELECTION_MASK_TYPE_GAUSSIAN The center Y of the Gaussian mask, range: [0.0f, 1.0f]
|
float32_t |
gaussianMaskStDevX |
for DW_FEATURE2D_DETECTOR_TYPE_EX only Ignored when not using DW_FEATURE2D_SELECTION_MASK_TYPE_GAUSSIAN The standard deviation in X of the Gaussian mask 1.0 means the standard deviation equals to the width of the image
|
float32_t |
gaussianMaskStDevY |
for DW_FEATURE2D_DETECTOR_TYPE_EX only Ignored when not using DW_FEATURE2D_SELECTION_MASK_TYPE_GAUSSIAN The standard deviation in Y of the Gaussian mask 1.0 means the standard deviation equals to the height of the image
|
uint32_t |
gradientSize |
for DW_PROCESSOR_TYPE_PVA_0 or DW_PROCESSOR_TYPE_PVA_1 only Gradient window size. Must be 3, 5 or 7.
|
float32_t |
harrisK |
Weigting K of the harris corner score defined as det(M) - K * trace(M) * trace(M), where M is the structural matrix 0.04 - 0.06 is used typically If set to zero the default value (5e-2) will be used. |
uint32_t |
harrisRadius |
for DW_FEATURE2D_DETECTOR_TYPE_EX only STD detector use fixed harrisRadius = 1. Radius of detector harris averaging window If set to zero the default value (1) will be used
|
uint32_t |
imageHeight |
Height of the images that the Detector runs on. When PVA fast9 detector is used, the height should be in range of [65, 2448]
|
uint32_t |
imageWidth |
Width of the images that the Detector runs on. When PVA fast9 detector is used, the width should be in range of [65, 3264]
|
bool |
isMaskAdjustmentEnabled |
for DW_FEATURE2D_DETECTOR_TYPE_EX only Switch to use mask adjusment |
dwFeature2DSelectionMaskType |
maskType |
for DW_FEATURE2D_DETECTOR_TYPE_EX only STD detector always output UNIFORM distribution. The type of feature selection mask
|
uint32_t |
maxFeatureCount |
Upper bound on number of features handled. When using EX detector, maxFeatureCount must be no less than the amount of cells, i.e., maxFeatureCount >= ceil(imageWidth / cellSize) * ceil(imageHeight / cellSize).
|
uint32_t |
NMSRadius |
for DW_FEATURE2D_DETECTOR_TYPE_EX and DW_FEATURE2D_DETECTOR_TYPE_FAST9 STD detector use fixed NMSRadius = 3. Radius of detector non-maximum suppression For EX detector, if it is set to zero the default value (1) will be used As for FAST9 detector, nonmax suppression will be enabled for non-zero value and will be disabled for zero
|
uint32_t |
numEvenDistributionPerCell |
for DW_FEATURE2D_DETECTOR_TYPE_STD only Number of features to be appended after high frequency points, they have second highest scores but are less than detectorDetailThreshold. During detection, the input image will be splitted into cellSize x cellSize small tiles, there'll be at most numEvenDistributionPerCell second-highest-score features in each cell.
Larger numEvenDistributionPerCell will output an evener distributed feature map Smaller numEvenDistributionPerCell will have more features in high frequence points (score >= detectorDetailThreshold) and a less evener distributed feature map. Invalid if = 0, in that case, only detectorDetailThreshold takes effect.
|
dwProcessorType |
processorType |
for DW_FEATURE2D_DETECTOR_TYPE_STD only set to DW_PROCESSOR_TYPE_PVA_0 or DW_PROCESSOR_TYPE_PVA_1 to call PVA harris detector. |
float32_t |
scoreThreshold |
Threshold to filter out low latency points. All points whose scores are less than detectorScoreThreshold will be considered as a non-feature point. Lower value will output more features, higher value will only keep the high frequency points. If set to zero the default value will be used.
|
dwFeature2DDetectorType |
type |
Detecting algorithm defined by dwFeature2DDetectorType |
bool |
useHalf |
for DW_FEATURE2D_DETECTOR_TYPE_EX only use half-precision floating point to calculate harris corner score |
bool |
useNewToOldMapFromPreTracked |
Determines whether the detector uses dwFeatureArray::newToOldMap directly from input preTrackedFeatures in dwFeature2DDetector_detectFromImage and dwFeature2DDetector_detectFromPyramid . If set to true, the output outputDetections::newToOldMap represents the mapping of output detections to frame(N-1) tracking If set to false, the output outputDetections::newToOldMap represents the mapping of output detections to frame(N) tracking Default is true.
|