Lec 02
Lec 02
CASE STUDY: RADAR SYSTEM track is a continuous, coherent path representing the movement of a
target over time, derived from a sequence of plots. It is the result of
processing and integrating multiple plots to follow a target's motion.
How Tracking Works:
Multiple-Hypothesis Approach:
Branching: The tracker considers several possible paths a target might
take.
Eliminating: Over time, it eliminates the less likely paths and keeps the
most probable ones.
Track Gating:
Assigning Plots: The tracker assigns new measurements (plots) to
existing tracks if they are close enough to where the tracker
predicted the target would be.
Track Association:
Resolving Conflicts: If multiple measurements (plots) are close to one
track or if one measurement is close to multiple tracks, the tracker
needs to figure out which plot belongs to which track.
Nearest-Neighbor Approach: This common method helps match plots
to tracks by finding the closest match, making it easier to track each
target individually.
Smoothing Algorithms:
Kalman Filter: A mathematical tool that helps refine the estimates of a
target’s position and velocity by considering both the measurements
and the predicted motion. It smooths out the data to provide a more
accurate tracking result.
CASE STUDY: RADAR SYSTEM
Track initiation occurs when new plots do not match any
existing tracks. A new track is created for each
unassociated plot, initially marked as "tentative"
until confirmed by subsequent radar updates. Before
confirmation, tentative tracks remain invisible to
operators to prevent false alarms from cluttering the
display.
Track maintenance involves managing existing
tracks, which may lose updates for various reasons,
such as a target moving out of range or being
temporarily obscured. Depending on the application,
a track can be terminated if it has not received
updates for a certain number of radar scans.
Radar systems are real-time systems that operate
under strict timing constraints at multiple levels. For
example, the object detector may need to produce
radar updates every 5 seconds, requiring the tracker
to process all updates within that timeframe. Digital
signal processing tasks may need to be completed
within milliseconds per processing cycle, while the
receiver subsystem might have to handle signal
reception tasks at the microsecond level for each
echo. This coordination ensures that radar systems
function efficiently, accurately detecting and tracking
objects in dynamic and complex environments.