I have having issues in correctly tracking multiple objects which are seen in front of the sensor.
I would like to tweak parameters related to tracking as described in the bin mat lab code as follows.
obj->trackerInstance.rangeAssocThresh = 2.0f; /* in meters. */
obj->trackerInstance.velAssocThresh = 2.0f; /* in meters/sec. */
obj->trackerInstance.azimAssocThresh = (5.0f/180.0f); /* in sin(omega). */
obj->trackerInstance.maxTrackers = MAX_TRK_OBJs;
obj->trackerInstance.fixedPointScale = (1 << obj->xyzOutputQFormat);
obj->trackerInstance.distAssocThreshSq = 1.65f; /* in meters sq. */
Where can I find documents or other materials to know what each parameters are and what values I can set