Lecture 3 - Feature Extraction and PCA Flashcards
What is feature extraction in the context of image analysis?
Feature extraction involves identifying and describing patterns or objects within an image, often using a vector of values to represent various aspects like shape, texture, or color.
Explain the difference between global and local features.
Global features describe the entire image with a single vector, whereas local features describe specific patches within the image.
What are the primary applications of feature extraction?
Feature extraction is used for tracking, registration, segmentation, 3D correspondence, retrieval, and recognition.
Define Principal Component Analysis (PCA).
PCA is a statistical method used to reduce the dimensionality of data by transforming it into a set of uncorrelated variables called principal components, which capture the most variance in the data.
What are the key challenges in feature extraction?
Key challenges include variations in viewpoint, illumination, background, occlusion, and intra-class variation.
Describe the concept of “interest points” in local feature extraction.
Interest points are distinct and localizable patches within an image that can be reliably detected under various conditions. Examples include edges, corners, and blobs.
Explain the importance of the structure tensor in corner detection.
The structure tensor captures intensity variations in different directions around a point, helping to identify corners where these variations are significant.
What is the Harris corner detector?
The Harris corner detector is an algorithm that identifies corners by examining the eigenvalues of the structure tensor, looking for regions with high variations in intensity in multiple directions.
Define “blob detection” and its significance.
Blob detection identifies areas in an image where some properties are roughly constant and differ from their surroundings, useful for detecting regions like cells in biomedical images.
Describe the Scale-Invariant Feature Transform (SIFT).
SIFT is a feature extraction method that detects keypoints in an image and generates descriptors that are invariant to scale, rotation, and partially invariant to illumination and affine transformation.
What is the role of Gaussian smoothing in edge detection?
Gaussian smoothing reduces noise by averaging pixel values with a Gaussian-weighted kernel, making edge detection more robust against noise.
Explain the concept of non-maximum suppression in edge detection.
Non-maximum suppression is a technique used to thin edges by keeping only the local maxima in the gradient magnitude image, resulting in one-pixel-wide edges.
Write the formula for the structure tensor used in corner detection.
Provide the formula for the Harris corner response.
Write the formula for the gradient magnitude used in edge detection.