This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

IWR1642: traffic monitoring

Part Number: IWR1642

trackingHistStruct = struct('tid', 0, 'allocationTime', 0, 'tick', 0, 'posIndex', 0, 'histIndex', 0, 'sHat', zeros(1000,6), 'ec', zeros(1000,9),'pos', zeros(100,2), 'hMeshU', [], 'hMeshG', [], 'hPlotAssociatedPoints', [], 'hPlotTrack', [], 'hPlotCentroid', []);
trackingHist = repmat(trackingHistStruct, 1, maxNumTracks);

1.can you give me the explanation of the 'trackingHist''?

  • Former Member
    0 Former Member

    Hello

    This is used to keep track of all the tracked objects being plotted. You can review the GUI source code to see how it is used. The replay tool uses this data to plot the tracked objects.

    Amanda