Hi, I’m attempting to utilize the VPI DCF tracker C API and encountering issues retrieving the CorrelationResponses and MaxCorrelationResponses outputs from vpiSubmitDCFTrackerLocalizeBatch.
The tracker is functional, and I can consistently track objects even in frames without detector inferences, so I don’t think this issue is connected to other sections of the program.
However, without CorrelationResponses and MaxCorrelationResponses data, I can only depend on the bounding box IOU score for detector/tracker data association.
The following is the code snippet.
Any help would be greatly appreciated. Thank you.
VPIDCFTrackerCreationParams m_createParams;
VPI_CHECK(vpiInitDCFTrackerCreationParams(&m_createParams));
...
VPIImage m_outCorrelationResponses;
int32_t outCorrelationResponsesWidth = m_createParams.featurePatchSize;
int32_t outCorrelationResponsesHeight = outCorrelationResponsesWidth * 128;
VPI_CHECK(vpiImageCreate(outCorrelationResponsesWidth, outCorrelationResponsesHeight, VPI_IMAGE_FORMAT_F32, 0, &m_outCorrelationResponses));
VPIArray m_outMaxCorrelationResponses;
VPI_CHECK(vpiArrayCreate(128, VPI_ARRAY_TYPE_F32, 0, &m_outMaxCorrelationResponses));
...
vpiSubmitDCFTrackerLocalizeBatch(m_vpiStream, VPI_BACKEND_CUDA, m_dcfPayload, m_enabledSequences, MAX_SEQUENCES,
NULL, m_objPatches, m_inObjects, m_outObjects,
m_outCorrelationResponses, m_outMaxCorrelationResponses,
&m_params);