predictTracksToTime
Predict track state
Syntax
Description
returns the predicted tracks, predictedtracks
= predictTracksToTime(obj
,trackid
,time
)predictedtracks
, of the tracker or fuser
object, obj
, at the specified time, time
. Specify
the track identifier, trackid
. The tracker or fuser must be updated at
least once before calling this object function. Use isLocked(obj)
to test
whether the tracker or fuser has been updated.
This syntax applies when you create the obj
using trackerGNN
,
trackerJPDA
, trackerPHD
,
trackerGridRFS
, or trackFuser
.
Note
This function only outputs the predicted tracks and does not update the internal
track states of the tracker
or fuser
.
returns all predicted tracks for a specified category, predictedtracks
= predictTracksToTime(obj
,category
,time
)category
, of
tracked objects.
This syntax applies when you create the obj
using trackerGNN
,
trackerJPDA
, trackerPHD
,
trackerGridRFS
, or trackFuser
.
returns the predicted tracks or branches, predictedtracks
= predictTracksToTime(obj
,type
,id
,time
)predictedtracks
, of the
tracker or fuser object, obj
, at the specified time,
time
. Specify the type, type
, of tracked object
and the object ID, id
. The tracker or fuser must be updated at least
once before calling this object function. Use isLocked(trackObj)
to test
whether the tracker or fuser has been updated.
This syntax applies when you create the obj
using trackerTOMHT
.
returns all predicted tracks or branches for a specified category,
predictedtracks
= predictTracksToTime(obj
,type
,category
,time
)category
, of tracked objects.
This syntax applies when you create the obj
using trackerTOMHT
.
also allows you to specify whether to predict the state covariance of each track or not by
setting the predictedtracks
= predictTracksToTime(___,'WithCovariance',tf)tf
flag to true
or
false
. Predicting the covariance slows down the prediction process and
increases the computation cost, but it provides the predicted track state covariance in
addition to the predicted state. The default is false.
Examples
Input Arguments
Output Arguments
Extended Capabilities
Version History
Introduced in R2018b