Week 4 Hough Transform and PCA Flashcards
What is the Hough Transform used for?
The Hough Transform is a technique for detecting shapes in images, like lines and circles.
How does the Hough Transform map points in image space?
It maps points in an image space to curves in a parameter space.
How is the line equation reformulated in the Hough Transform?
For line detection, the equation y = mx + c is reformulated as ρ = xcos(θ) + ysin(θ).
What does the Hough space accumulate?
The Hough space accumulates votes for parameter combinations, identifying strong candidates.
What is the purpose of the Probabilistic Hough Transform?
The Probabilistic Hough Transform optimises performance by sampling points randomly.
What input is commonly used for the Hough Transform?
Edge maps from detectors like Canny are commonly used as input for the Hough Transform.
What are accumulator arrays used for in the Hough Transform?
Accumulator arrays store votes for potential shape parameters during the transform.
What is PCA in computer vision?
PCA is a dimensionality reduction technique widely used in computer vision and data analysis.
What does PCA transform data into?
PCA transforms data to a new coordinate system based on variance.
What are principal components?
Principal components are the directions with maximum variance in the data.