Measurement function for constant velocity motion
returns the measurement for a constant-velocity Kalman filter motion model in
rectangular coordinates. The measurement
= cvmeas(state
)state
argument specifies the
current state of the tracking filter.
also specifies the measurement coordinate system, measurement
= cvmeas(state
,frame
)frame
.
also specifies the sensor position, measurement
= cvmeas(state
,frame
,sensorpos
)sensorpos
.
also
specifies the sensor velocity, measurement
= cvmeas(state
,frame
,sensorpos
,sensorvel
)sensorvel
.
specifies the measurement parameters,
measurement
= cvmeas(state
,measurementParameters
)measurementParameters
.
Define the state of an object in 2-D constant-velocity motion. The state is the position and velocity in both dimensions. The measurements are in rectangular coordinates.
state = [1;10;2;20]; measurement = cvmeas(state)
measurement = 3×1
1
2
0
The z-component of the measurement is zero.
Define the state of an object in 2-D constant-velocity motion. The state is the position and velocity in each spatial dimension. The measurements are in spherical coordinates.
state = [1;10;2;20];
measurement = cvmeas(state,'spherical')
measurement = 4×1
63.4349
0
2.2361
22.3607
The elevation of the measurement is zero and the range rate is positive. These results indicate that the object is moving away from the sensor.
Define the state of an object in 2-D constant-velocity motion. The state consists of position and velocity in each spatial dimension. The measurements are in spherical coordinates with respect to a frame located at (20;40;0) meters.
state = [1;10;2;20];
measurement = cvmeas(state,'spherical',[20;40;0])
measurement = 4×1
-116.5651
0
42.4853
-22.3607
The elevation of the measurement is zero and the range rate is negative. These results indicate that the object is moving toward the sensor.
Define the state of an object in 2-D constant-velocity motion. The state consists of position and velocity in each spatial dimension. The measurements are in spherical coordinates with respect to a frame located at (20;40;0) meters.
state2d = [1;10;2;20];
frame = 'spherical';
sensorpos = [20;40;0];
sensorvel = [0;5;0];
laxes = eye(3);
measurement = cvmeas(state2d,frame,sensorpos,sensorvel,laxes)
measurement = 4×1
-116.5651
0
42.4853
-17.8885
The elevation of the measurement is zero and the range rate is negative. These results indicate that the object is moving toward the sensor.
Put the measurement parameters in a structure and use the alternative syntax.
measparm = struct('Frame',frame,'OriginPosition',sensorpos,'OriginVelocity',sensorvel, ... 'Orientation',laxes); measurement = cvmeas(state2d,measparm)
measurement = 4×1
-116.5651
0
42.4853
-17.8885
state
— Kalman filter state vectorKalman filter state vector for constant-velocity motion, specified as a real-valued
2N-element column vector where N is the number
of spatial degrees of freedom of motion. The state
is expected to
be Cartesian state. For each spatial degree of motion, the state vector takes the form
shown in this table.
Spatial Dimensions | State Vector Structure |
---|---|
1-D | [x;vx] |
2-D | [x;vx;y;vy] |
3-D | [x;vx;y;vy;z;vz] |
For example, x
represents the
x-coordinate and vx
represents the velocity in the
x-direction. If the motion model is 1-D, values along the
y and z axes are assumed to be zero. If the
motion model is 2-D, values along the z axis are assumed to be zero.
Position coordinates are in meters and velocity coordinates are in meters/sec.
Example: [5;.1;0;-.2;-3;.05]
Data Types: single
| double
frame
— Measurement output frame'rectangular'
(default) | 'spherical'
Measurement output frame, specified as 'rectangular'
or
'spherical'
. When the frame is 'rectangular'
,
a measurement consists of x, y, and
z Cartesian coordinates. When specified as
'spherical'
, a measurement consists of azimuth, elevation,
range, and range rate.
Data Types: char
sensorpos
— Sensor position[0;0;0]
(default) | real-valued 3-by-1 column vectorSensor position with respect to the navigation frame, specified as a real-valued 3-by-1 column vector. Units are in meters.
Data Types: double
sensorvel
— Sensor velocity[0;0;0]
(default) | real-valued 3-by-1 column vectorSensor velocity with respect to the navigation frame, specified as a real-valued 3-by-1 column vector. Units are in m/s.
Data Types: double
laxes
— Local sensor coordinate axes[1,0,0;0,1,0;0,0,1]
(default) | 3-by-3 orthogonal matrixLocal sensor coordinate axes, specified as a 3-by-3 orthogonal matrix. Each column specifies the direction of the local x-, y-, and z-axes, respectively, with respect to the navigation frame. That is, the matrix is the rotation matrix from the global frame to the sensor frame.
Data Types: double
measurementParameters
— Measurement parametersMeasurement parameters, specified as a structure or an array of structures. The fields of the structure are:
Field | Description | Example |
---|---|---|
Frame | Frame used to report measurements, specified as one of these values:
| 'spherical' |
OriginPosition | Position offset of the origin of the frame relative to the parent frame, specified as an [x y z] real-valued vector. | [0 0 0] |
OriginVelocity | Velocity offset of the origin of the frame relative to the parent frame, specified as a [vx vy vz] real-valued vector. | [0 0 0] |
Orientation | Frame rotation matrix, specified as a 3-by-3 real-valued orthonormal matrix. | [1 0 0; 0 1 0; 0 0 1] |
HasAzimuth | Logical scalar indicating if azimuth is included in the measurement. | 1 |
HasElevation | Logical scalar indicating if elevation is included in the measurement. For measurements reported in a rectangular frame, and if HasElevation is false, the reported measurements assume 0 degrees of elevation. | 1 |
HasRange | Logical scalar indicating if range is included in the measurement. | 1 |
HasVelocity | Logical scalar indicating if the reported detections include velocity measurements. For measurements reported in the rectangular frame, if HasVelocity is false, the measurements are reported as [x y z] . If HasVelocity is true , measurements are reported as [x y z vx vy vz] . | 1 |
IsParentToChild | Logical scalar indicating if Orientation performs a frame rotation from the parent coordinate frame to the child coordinate frame. When IsParentToChild is false , then Orientation performs a frame rotation from the child coordinate frame to the parent coordinate frame. | 0 |
Data Types: struct
measurement
— Measurement vectorMeasurement vector, returned as an N-by-1 column vector. The form of the measurement depends upon which syntax you use.
When the syntax does not use the measurementParameters
argument, the measurement vector is [x,y,z]
when the
frame
input argument is set to
'rectangular'
and [az;el;r;rr]
when
the frame
is set to 'spherical'
.
When the syntax uses the measurementParameters
argument,
the size of the measurement vector depends on the values of the
frame
, HasVelocity
, and
HasElevation
fields in the
measurementParameters
structure.
frame | measurement | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
'spherical' | Specifies the azimuth angle, az, elevation angle, el, range, r, and range rate, rr, of the object with respect to the local ego vehicle coordinate system. Positive values for range rate indicate that an object is moving away from the sensor. Spherical measurements
Angle units are in degrees, range units are in meters, and range rate units are in m/s. | |||||||||||||||
'rectangular | Specifies the Cartesian position and velocity coordinates of the tracked object with respect to the ego vehicle coordinate system. Rectangular measurements
Position units are in meters and velocity units are in m/s. |
Data Types: double
Define the azimuth and elevation angles used in Automated Driving Toolbox™.
The azimuth angle of a vector is the angle between the x-axis and its orthogonal projection onto the xy plane. The angle is positive in going from the x axis toward the y axis. Azimuth angles lie between –180 and 180 degrees. The elevation angle is the angle between the vector and its orthogonal projection onto the xy-plane. The angle is positive when going toward the positive z-axis from the xy plane.
cameas
| cameasjac
| constacc
| constaccjac
| constturn
| constturnjac
| constvel
| constveljac
| ctmeas
| ctmeasjac
| cvmeasjac
You have a modified version of this example. Do you want to open this example with your edits?