CV MCQ — Chapter 6 0 Questions
Global Features (HOG & Texture)

Global Features (HOG & Texture) MCQ

Histogram of Oriented Gradients and global texture cues for classification and pedestrian detection.

Easy: 0 Q Medium: 0 Q Hard: 0 Q

HOG (Histogram of Oriented Gradients) MCQ

HOG descriptors

HOG summarizes local edge orientations in a dense grid. Block-wise contrast normalization makes the descriptor robust to illumination while preserving shape cues—classic for rigid pedestrian templates + linear SVM.

Why blocks?

L2 normalize over overlapping blocks of concatenated cell histograms to cancel local lighting gradients.

Pipeline

Gradients

Finite differences with optional Gaussian pre-smoothing; magnitude weights orientation votes.

Cells

Unsigned orientations binned (e.g., 9 bins over 0–180°) per cell.

Blocks & stride

2×2 cells per block with stride controls overlap and final dimensionality.

Modern use

CNNs largely replaced hand-tuned HOG+SVM, but HOG teaches gradient histogram ideas still used inside networks.

Sliding window

Fixed aspect window scans image; each window → one HOG vector → classifier score

Pro tip: Mirror training data for pedestrians—left/right symmetry augments rigid templates.