tracking Flashcards
(53 cards)
What is the goal of object tracking in video?
To determine the location of a target object in each frame of a video sequence.
What is change detection used for in tracking?
To identify moving objects in static camera scenes by detecting changes from a reference background.
What is simple frame differencing?
Computing the difference between consecutive frames and thresholding the result to detect motion.
What is a limitation of frame differencing?
It’s sensitive to noise and changes in lighting.
What is background modeling in tracking?
Building a model of the scene’s static content and identifying pixels that differ as foreground.
What is a moving median background model?
A model that stores the median of recent frames at each pixel to filter out short-term variations.
What is the drawback of moving median background modeling?
It’s computationally expensive and may still struggle with complex backgrounds.
What is the key idea behind Gaussian Mixture Models in tracking?
Each pixel is modeled as a mixture of Gaussians over time, capturing dynamic background behavior.
What does each Gaussian component in a GMM represent?
A different background or foreground mode for a pixel’s intensity over time.
How are pixels classified in GMM-based background subtraction?
Pixels fitting the dominant Gaussian are background; others are foreground.
Who introduced the GMM method for background subtraction?
Stauffer and Grimson (1998).
What is template-based tracking?
Matching an object’s appearance or histogram from earlier frames to its new location in the current frame.