The tutorial shows the general structure of a program that uses the 2D template tracker to track templates in a single camera.
Initialize template array on both CPU and GPU
contextHandle
is assumed to be previously initialized dwContextHandle_t
.
DW_FEATURE2D_MEMORY_TYPE_CPU, contextHandle);
DW_FEATURE2D_MEMORY_TYPE_CUDA, contextHandle);
DW_API_PUBLIC dwStatus dwTemplateArray_create(dwTemplateArray *templateArray, const uint32_t maxTemplateCount, const dwMemoryType memoryType, dwContextHandle_t context)
Creates and initializes a template array.
Initialize template tracker parameters with default values
DW_API_PUBLIC dwStatus dwTemplateTracker_initDefaultParams(dwTemplateTrackerParameters *params)
Initializes TemplateTracker parameters with default values.
Configuration parameters for a dwTemplateTrackerIA.
Modify parameters according to tracking requirements
imageProps
is the dwImageProperties
structure of image to be tracked
DW_API_PUBLIC dwStatus dwImage_getPixelType(dwTrivialDataType *const type, dwImageFormat const format)
Retrieves dwTrivialDataType associated with a specific format.
float32_t validWidth
Maximum valid template width, any templates with bbox.width > validWidth will be killed after trackin...
float32_t validHeight
Maximum valid template height, any templates with bbox.height > validHeight will be killed after trac...
Select on which processor the tracker should be performed on. Allowed option is DW_PROCESSOR_TYPE_GPU
.
uint32_t imageHeight
Height of the images that the tracker runs on.
uint32_t imageWidth
Width of the images that the tracker runs on.
dwProcessorType processorType
Processor type which determines on which processor the algorithm should be executed on.
Initialize template tracker with given parameters and bind output
DW_API_PUBLIC dwStatus dwTemplateTracker_initialize(dwTemplateTrackerHandle_t *obj, const dwTemplateTrackerParameters *params, cudaStream_t stream, dwContextHandle_t context)
Initialize the TemplateTracker module.
Create 2 image pyramids as detection/tracking input: one is current, one is previous, the 2 pyramids work as a double buffer (or ping-pong buffer). They swap each other after each detection/tracking cycle. So new frame will always be read into pyramidCurrent and the previous frame will be stored to pyramidPrevious.
dwPyramid_create
only creates pyramid image and allocates memory, pyramid will be filled in dwImageFilter_computePyramid
. Top level (level 0) in pyramid is always the same size as original input image.
inputImageProps.width
, inputImageProps.height
are the same in tracker/detector initialization
imagePxlType
should be got from dwImage_getPixelType(inputImageProps.format)
.
contextHandle
is assumed to be previously initialized dwContextHandle_t.
inputImageProps.width, inputImageProps.height, pxlType, context);
inputImageProps.width, inputImageProps.height, pxlType,context);
DW_API_PUBLIC dwStatus dwPyramid_create(dwPyramidImage *pyramid, uint32_t levelCount, uint32_t width, uint32_t height, dwTrivialDataType pxlType, dwContextHandle_t context)
Creates and initializes an image pyramid.
Add bounding boxes to be tracked to the tracker. BBox can be extracted from the DNN detector, or defined by the user.
uint32_t nNewBoxes = ...;
*featureData.featureCount = nNewBoxes;
for (uint32_t i = 0; i < nNewBoxes; i++) {
featureData.locations[i] = {newBoxes[i].x + newBoxes[i].
width/2, newBoxes[i].
y + newBoxes[i].
height/2};
featureData.sizes[i] = {newBoxes[i].
width, newBoxes[i].
height}
featureData.statuses[i] = DW_FEATURE_STATUS_DETECTED;
}
dwTemplateArray_copy(&templateGPU, &templateCPU, 0);
Defines a rectangle with floating point numbers.
Start tracking the loop
while(true)
{
std::swap(pyramidCurrent, pyramidPrevious);
&pyramidPrevious, tracker);
dwTemplateArray_copy(&templateCPU, &templateGPU, 0);
if (*featureData.featureCount == 0)
break;
featureData.locations[...];
featureData.sizes[...];
}
struct dwImageObject * dwImageHandle_t
DW_API_PUBLIC dwStatus dwImageFilter_computePyramid(dwPyramidImage *pyramid, const dwImageCUDA *image, cudaStream_t stream, dwContextHandle_t context)
Builds the pyramid from level 0 image.
DW_API_PUBLIC dwStatus dwTemplateTracker_trackPyramid(dwTemplateArray *templateArray, const dwPyramidImage *currentPyramid, const dwPyramidImage *previousPyramid, dwTemplateTrackerHandle_t obj)
Track the templates in currentPyramid .
Finally, free previously allocated memory.
DW_API_PUBLIC dwStatus dwPyramid_destroy(dwPyramidImage pyramid)
Destroy pyramid images.
DW_API_PUBLIC dwStatus dwTemplateArray_destroy(dwTemplateArray templateArray)
Destroys the template array and frees any memory created by dwTemplateArray_createNew().
DW_API_PUBLIC dwStatus dwTemplateTracker_release(dwTemplateTrackerHandle_t obj)
Releases the TemplateTracker module.
For the full implementation, refer to Template Tracker Sample.