|
VPI - Vision Programming Interface
0.3.7 Release
|
Overview
The Kanade-Lucas-Tomasi (KLT) Tracker algorithm estimates the 2D translation and scale changes of an image template between original template coordinates and a given reference image using the Inverse Compositional algorithm. For more information, see [1].
Inputs are an array of template bounding boxes, a translation and scale changes predictions array and a reference image. Additionally, a template image input is used to update template patches (see details below).
Outputs are the translation and scale changes estimation array from the input bounding box coordinates to the reference image coordinates and the template bounding box coordinates array in the reference image.
Frame #1 | Frame #10 |
| |
Implementation
Each template bounding box defines a template image patch stored internally with the function descriptor. These template patches are tracked in reference images based on predicted translation and scale changes. An estimated translation and scale change from the original bounding box coordinates to reference image coordinates is computed. Each such estimation includes a tracking validity flag (tracking success or failure) and whether a template update is required, based on user-defined threshold parameters.
Usage
- Note
- Due to PVA restrictions, the created VPI arrays' capacity must be 128.
- Initialization phase
- Include the header that defines the needed functions and structures.
- Define the stream on which the algorithm will be executed, the input frames and input bounding boxes. Refer to VPIBoundingBox documentation for instructions on how to properly fill each bounding box given an axis-aligned bounding box, the reference frames, the input boxes and input predictions.
size_t frame_count = ;
size_t bbox_count = ;
- Create the bounding box array with tracking information. For new bounding boxes,
trackingStatus
must be 0, indicating that bounding box tracking is valid. templateStatus
must be 1, indicating that the template corresponding to this bounding box must be updated.
for (size_t b = 0; b < bbox_count; ++b)
{
tracked_bboxes[b].
bbox = bboxes[b];
}
Wrap the tracked bounding box into a VPIArray. The array type must be VPI_ARRAY_TYPE_KLT_TRACKED_BOUNDING_BOX
memset(&data_bboxes, 0, sizeof(data_bboxes));
data_bboxes.
size = bbox_count;
data_bboxes.
data = tracked_bboxes;
- Create the bounding box transformation prediction array, initially filled with identity transforms, since the template matches exactly the bounding box contents in the template image.
for (size_t i = 0; i < bbox_count; ++i)
{
memset(xform, 0, sizeof(*xform));
}
- Wrap this array into a VPIArray. The array type must be VPI_ARRAY_TYPE_HOMOGRAPHY_TRANSFORM_2D.
memset(&data_preds, 0, sizeof(data_preds));
data_preds.
size = bbox_count;
- Create the payload that will contain all temporary buffers needed for processing. It is assumed that all input frames have the same size, so the first frame dimensions and type are used to create the payload.
- Define the configuration parameters that guide the KLT tracking process.
- Create the output tracked bounding box array. It will contain the estimated current frame's bounding box based on previous frame and the template information gathered so far. It also contains the bounding box current tracking status.
- Create the output estimated transforms. It will contain the transform that makes the bounding box template match the corresponding bounding box on the current (reference) frame.
- Processing phase
- Start of the processing loop from the second frame. The previous frame is where the algorithm fetches the tracked templates from, the current frame is where these templates are matched against.
for (int idframe = 1; idframe < frame_count; ++idframe)
{
VPIImage imgTemplate = frames[idframe - 1];
VPIImage imgReference = frames[idframe];
- Submit the algorithm. The first time it's run, it will go through all input bounding boxes, crop them from the template frame and store them in the payload. Subsequent runs will either repeat the cropping and storing process for new bounding boxes added (doesn't happen in this example, but happens in the sample application), or perform the template matching on the reference frame.
outputBoxList, outputEstimList, ¶ms));
- Wait until the processing is done.
- Lock the output arrays to retrieve the updated bounding boxes and the estimated transforms.
- Loop through all bounding boxes.
for (size_t b = 0; b < bbox_count; ++b)
{
- Update bounding box statuses. If tracking was lost (
trackingStatus==1
), the input bounding box must also be marked as such, so subsequent KLT iterations ignore it. If the template needs to be updated (templateStatus==1
), the next iteration will do the updating, or else it will perform the template matching.
- Skip bounding boxes that aren't being tracked.
if (updated_bbox[b].trackingStatus)
{
continue;
}
- If template for this bounding box must be updated in next KLT iteration, the user must re-define the bounding box. There are several ways to do it. One can use a feature detector such as Harris keypoint detector to help fetch a brand-new bounding box, use
updated_bbox[b]
and either refine it through other means to avoid accumulating tracking errors, or simply use it as-is, which is a less robust approach, but still yields decent results. This example chooses this last, simpler approach. if (updated_bbox[b].templateStatus)
{
tracked_bboxes[b] = updated_bbox[b];
- Also reset the corresponding input predicted transforms, setting it to identity, as it's now assumed that the input bounding box matches exactly the object being tracked.
memset(&preds[b], 0, sizeof(preds[b]));
}
- If the template doesn't need to be updated, set the input predicted transform to the one estimated by this KLT iteration.
else
{
preds[b] = estim[b];
}
}
- Once all bounding boxes are updated, unlock the output arrays as they aren't needed by this iteration anymore.
- Since the input arrays content has been modified externally, invalidate them so that VPI discards the contents of any copies it might have made internally.
- Cleanup phase
- Free all VPI resources at once by destroying the context.
For more details, consult the API reference.
Limitations and Constraints
Constraints for specific backends supersede the ones specified for all backends.
All Backends
- Reference and template frames must have the same dimensions and type, and they must match what was defined during payload construction.
- Accepted input types:
- Input and output bounding box arrays must have type VPI_ARRAY_TYPE_KLT_TRACKED_BOUNDING_BOX.
- Input predictions and output estimations must have type VPI_ARRAY_TYPE_HOMOGRAPHY_TRANSFORM_2D.
- Accepted tracking types:
- Constraint:
0 < nccThresholdUpdate <= 1
- Constraint:
0 < nccThresholdKill <= 1
- Constraint:
0 < nccThresholdStop <= 1
- Constraint:
nccThresholdKill > nccThresholdUpdate > nccThresholdStop
- Constraint:
maxScaleChange >= 0
- Constraint:
maxTranslationChange >= 0
- Bounding box sizes must be between 4x4 and 64x64
PVA
- Input images' dimensions must be between 65x65 and 3264x2448.
- Maximum scale change is 0.2.
- Minimum input and output array capacities is 128.
- Maximum number of bounding boxes is 64.
- Maximum
numberOfIterationsScaling
is 20.
- Only accepts VPI_IMAGE_TYPE_U16 inputs whose pixel values' range is between 0 and 255.
References
- Simon Baker, Iain Matthews, "Lucas-Kanade 20 Years On: A Unified Framework".
International Journal of Computer Vision, February 2004, Volume 56, issue 3, pp 221-255.
Stores a bounding box that is being tracked by KLT Tracker.
VPIStatus vpiArrayCreate(uint32_t capacity, VPIArrayType fmt, uint32_t flags, VPIArray *array)
Create an empty array instance with the specified flags.
float mat3[3][3]
3x3 homogeneous matrix that defines the homography.
VPIImageType
Image formats.
@ VPI_LOCK_READ
Lock memory only for reading.
VPIArrayType type
Type of each array element.
VPIStatus vpiArrayUnlock(VPIArray array)
Releases the lock on array object.
VPIStatus vpiArrayWrapHostMem(const VPIArrayData *arrayData, uint32_t flags, VPIArray *array)
Create an array object by wrapping around an existing host-memory block.
VPIStatus vpiStreamSync(VPIStream stream)
Blocks the calling thread until all submitted commands in this stream queue are done (queue is empty)...
float maxScaleChange
Maximum relative scale change.
struct VPIStreamImpl * VPIStream
A handle to a stream.
uint32_t size
Number of elements in the array.
VPIKLTBoundingBoxTrackerType trackingType
Type of KLT tracking that will be performed.
uint8_t templateStatus
Status of the template related to this bounding box.
@ VPI_ARRAY_TYPE_HOMOGRAPHY_TRANSFORM_2D
VPIHomographyTransform2D element.
VPIStatus vpiSubmitKLTBoundingBoxTracker(VPIPayload payload, VPIImage templateImage, VPIArray inputBoxList, VPIArray inputPredictionList, VPIImage referenceImage, VPIArray outputBoxList, VPIArray outputEstimationList, const VPIKLTBoundingBoxTrackerParams *params)
Runs KLT Tracker on two frames.
void vpiContextDestroy(VPIContext ctx)
Destroy a context instance as well as all resources it owns.
uint32_t capacity
Maximum number of elements that the array can hold.
void * data
Points to the first element of the array.
float maxTranslationChange
Maximum relative translation change.
float nccThresholdStop
Threshold to stop estimating.
uint8_t trackingStatus
Tracking status of this bounding box.
float nccThresholdKill
Threshold to consider template tracking was lost.
VPIStatus vpiCreateKLTBoundingBoxTracker(VPIStream stream, uint32_t imageWidth, uint32_t imageHeight, VPIImageType imageType, VPIPayload *payload)
Creates payload for vpiSubmitKLTBoundingBoxTracker.
@ VPI_ARRAY_TYPE_KLT_TRACKED_BOUNDING_BOX
VPIKLTTrackedBoundingBox element.
Structure that defines the parameters for vpiCreateKLTBoundingBoxTracker.
Stores a generic 2D bounding box.
struct VPIImageImpl * VPIImage
A handle to an image.
float nccThresholdUpdate
Threshold for requiring template update.
VPIStatus vpiImageGetSize(VPIImage img, uint32_t *width, uint32_t *height)
Get the image size in pixels.
VPIStatus vpiImageGetType(VPIImage img, VPIImageType *type)
Get the image type.
Stores information about array characteristics and content.
struct VPIPayloadImpl * VPIPayload
A handle to an algorithm payload.
VPIBoundingBox bbox
Bounding box being tracked.
VPIStatus vpiArrayLock(VPIArray array, VPILockMode mode, VPIArrayData *arrayData)
Acquires the lock on array object and returns a pointer to array data.
struct VPIArrayImpl * VPIArray
A handle to an array.
VPIStatus vpiArrayInvalidate(VPIArray array)
This method is useful for unmanaged arrays only (created with 'vpiArrayWrap*`).
@ VPI_KLT_INVERSE_COMPOSITIONAL
Inverse compositional algorithm for KLT tracker.
uint32_t numberOfIterationsScaling
Number of Inverse compositional iterations of scale estimations.