getTrackPositions
Returns updated track positions and position covariance matrix
Syntax
Description
returns a matrix of track positions based on tracks and the position
selector.positions
= getTrackPositions(tracks
,positionSelector
)
[
also returns the track position covariance matrices.positions
,positionCovariances
]
= getTrackPositions(___)
Examples
Input Arguments
tracks
— Object tracks
array of objectTrack
objects | array of structures
Object tracks, specified as an array of objectTrack
objects or an
array of structures containing sufficient information to obtain the track
position information. At a minimum, these structures must contain a
State
column vector field and a positive-definite
StateCovariance
matrix field. For a sample
track structure, see toStruct
.
Note
If you specify tracks
as an empty objectTrack
object, an
empty cell, or an empty track structure,
positions
and
positionCovariances
are returned based on
the second argument (positionSelector
or
modelName
) as follows.
Second input argument | positions | positionCovariances |
---|---|---|
postionSelector |
|
|
modelName |
|
|
modelName
— Motion model name
"constvel"
| "constacc"
| "singer"
| "constturn"
| "ctrv"
Motion model name, specified as one of these options:
"constvel"
— The function obtains the position states based on the state definition in theconstvel
function."constacc"
— The function obtains the position states based on the state definition in theconstacc
function."constturn"
— The function obtains the position states based on the state definition in theconstturn
function."singer"
— The function obtains the position states based on the state definition in thesinger
(Sensor Fusion and Tracking Toolbox) function. The use ofsinger
model requires the Sensor Fusion and Tracking Toolbox™.
positionSelector
— Position selection matrix
D-by-N real-valued matrix.
Position selector, specified as a D-by-N real-valued matrix of ones and zeros. D is the number of dimensions of the tracker. N is the size of the state vector. Using this matrix, the function extracts track positions from the state vector. Multiply the state vector by position selector matrix returns positions. The same selector is applied to all object tracks.
Output Arguments
positions
— Positions of tracked objects
real-valued M-by-D matrix
Positions of tracked objects at last update time, returned as a real-valued M-by-D matrix. D represents the number of position elements. M represents the number of tracks.
positionCovariances
— Position covariance matrices of tracked objects
real-valued
D-by-D-M
array
Position covariance matrices of tracked objects, returned as a real-valued D-by-D-M array. D represents the number of position elements. M represents the number of tracks. Each D-by-D submatrix is a position covariance matrix for a track.
More About
Position Selector for 2-Dimensional Motion
Show the position selection matrix for two-dimensional motion when the state consists of the position and velocity.
Position Selector for 3-Dimensional Motion
Show the position selection matrix for three-dimensional motion when the state consists of the position and velocity.
Position Selector for 3-Dimensional Motion with Acceleration
Show the position selection matrix for three-dimensional motion when the state consists of the position, velocity, and acceleration.
Extended Capabilities
C/C++ Code Generation
Generate C and C++ code using MATLAB® Coder™.
In code generation, if you use the
modelName
input, thetracks
input must be specified as non-empty structures. Use the following if empty structures are unavoidable:if isempty(tracks) % Return the sizes and data types you desire positions = zeros(0,3,"single"); positonCovariances = zeros(3,3,0,"single"); else [positions,positionCovariances] = getTrackPositons(tracks,"constvel"); end
Version History
Introduced in R2017aR2022b: Obtain position and covariance from tracks using motion model name input
You can now obtain positions and associated covariances of tracks by specifying the motion model name as an input. For example,
[positions,covariances] = getTrackPositions(tracks,"constvel")
constvel
function.See Also
Functions
getTrackVelocities
|constvel
(Sensor Fusion and Tracking Toolbox) |constturn
(Sensor Fusion and Tracking Toolbox) |constacc
(Sensor Fusion and Tracking Toolbox) |ctrv
(Sensor Fusion and Tracking Toolbox) |singer
(Sensor Fusion and Tracking Toolbox)
Objects
multiObjectTracker
|trackerPHD
(Sensor Fusion and Tracking Toolbox) |trackerJPDA
(Sensor Fusion and Tracking Toolbox) |objectTrack
(Sensor Fusion and Tracking Toolbox)
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)
Asia Pacific
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)