Skip to content
tezvyn:

Top 30 Computer Vision Concepts Quiz

30 multiple-choice questions on the Computer Vision fundamentals, drawn from 30 bites in the Computer Vision library. Answer them here or read straight down. Every question carries the correct option, why it is correct, and a link to the bite it came from.

Image/video models, diffusion, OCR, multimodal

30 questions. Pick an answer, or open “Show the answer” to read it.

Answers are graded in your browser. Nothing is saved, and no XP or streak is earned here. The app keeps score.

  1. Question 1 of 30

    What is the main drawback of representing a digital image as a fixed grid of pixels?

    Show the answer

    Answer: b · It causes the image to appear blurry or pixelated when scaled up significantly.

    The card states that the 'primary weakness is scaling' for raster images, as making them larger requires inventing new pixels, leading to blurriness or pixelation. Option D describes vector graphics, which is a common misconception about how raster images work.

    Read the full bite: Digital Images as Grids of Pixels

  2. Question 2 of 30

    What is the primary reason the pinhole camera model should not be directly applied to raw images from real cameras?

    Show the answer

    Answer: d · It does not model the non-linear distortions introduced by real camera lenses.

    The card explicitly states that real cameras introduce non-linear distortions (e.g., barrel or fisheye effects) that violate the straight-line assumption of the pinhole model. While other issues might exist, lens distortion is the primary limitation mentioned for direct application.

    Read the full bite: Pinhole Camera Model: Projecting 3D to 2D

  3. Question 3 of 30

    In the RGB color model, what color is produced when red, green, and blue light are combined at their maximum intensity?

    Show the answer

    Answer: a · White

    The RGB model is additive, meaning it starts with black and adds light. The card explicitly states that when all three primary lights (red, green, blue) overlap at full intensity, the result is white. Black is the result of mixing all primary pigments in a subtractive model, which is a common misconception the card addresses.

    Read the full bite: RGB Color Model: Mixing Light, Not Paint

  4. Question 4 of 30

    Which of the following best describes a fundamental limitation of an image histogram?

    Show the answer

    Answer: d · It fails to provide any information about the spatial arrangement of pixels in an image.

    An image histogram has zero spatial awareness; it summarizes pixel counts by brightness but does not indicate where those pixels are located in the image. Therefore, it cannot judge composition. The other options describe capabilities that histograms possess or misrepresent their core function.

    Read the full bite: Image Histograms: Visualizing an Image's Tonal DNA

  5. Question 5 of 30

    Which camera property is NOT directly determined by camera resectioning?

    Show the answer

    Answer: a · The camera's internal lens distortion parameters.

    Camera resectioning determines the camera's external pose (position and orientation) based on known 3D-to-2D point correspondences. It assumes internal properties like lens distortion are either known or handled by a separate calibration, making them not directly determined by resectioning. The 2D pixel locations of known 3D points are inputs to the process, not outputs.

    Read the full bite: Camera Resectioning: Finding a Camera's Pose in 3D Space

  6. Question 6 of 30

    For which application is correcting lens distortion most essential?

    Show the answer

    Answer: a · Reconstructing a 3D environment from a series of images

    Correcting lens distortion is mandatory for applications like 3D reconstruction (photogrammetry) that rely on precise geometric measurements from images. While object classification might use images, it often doesn't require the same geometric precision, and aesthetic quality can sometimes even be enhanced by distortion.

    Read the full bite: Lens Distortion: Why Straight Lines Curve in Photos

  7. Question 7 of 30

    For which reason are HSL and HSV models generally unsuitable for image analysis and computer vision tasks?

    Show the answer

    Answer: b · They lack perceptual uniformity, making color difference measurements unreliable.

    The card states that HSL and HSV are not perceptually uniform, meaning visual changes do not correspond consistently to numerical changes, which makes calculating color distance unreliable for algorithms. Other options are either incorrect or not the primary reason cited.

    Read the full bite: HSL and HSV: Intuitive Ways to Represent RGB Color

  8. Question 8 of 30

    In an RGB system, what does "True color" (24-bit color depth) signify regarding bits per channel (bpc)?

    Show the answer

    Answer: d · Each of the Red, Green, and Blue channels uses 8 bits.

    True color (24-bit color depth) means 24 bits per pixel (bpp). In an RGB system, these 24 bits are typically divided equally among the three channels (Red, Green, Blue), meaning 8 bits per channel (8 bpc). Option C is incorrect because 24 bits per channel would result in 72 bpp, not 24 bpp.

    Read the full bite: Color Depth: Bits Per Pixel vs. Bits Per Channel

  9. Question 9 of 30

    A textile company needs to ensure fabric colors match a standard precisely, regardless of the display or printer used. Why would they primarily use CIELAB for this task?

    Show the answer

    Answer: b · It provides a device-independent measure of color perception, allowing for objective comparison and quality control.

    CIELAB's primary advantage is its device-independent nature, modeling color based on human perception rather than display output. This allows for objective measurement and comparison of colors, crucial for quality control. Option C is less accurate because while CIELAB can be used for intuitive corrections, its core strength for precise matching lies in its perceptual uniformity and device independence, not just ease of adjustment.

    Read the full bite: CIELAB Color Space: Measuring Color Beyond RGB

  10. Question 10 of 30

    Which statement best explains why radiometry is crucial for a self-driving car's camera system?

    Show the answer

    Answer: d · It quantifies the physical energy of light hitting the sensor, enabling objective machine interpretation.

    Radiometry measures the actual physical energy of light (in watts), which is critical for machines like self-driving cars to objectively interpret their environment, independent of human perception. Option B is incorrect because radiometry specifically avoids human perception weighting, which is the domain of photometry.

    Read the full bite: Radiometry: Measuring Light as Physics, Not Perception

  11. Question 11 of 30

    Which optical phenomenon is NOT directly accounted for by a standard Bidirectional Reflectance Distribution Function (BRDF)?

    Show the answer

    Answer: a · The way light penetrates and exits a marble sculpture.

    The card explicitly states that standard BRDF models are for opaque surfaces only and do not account for light transmitted through a material (translucency) or scattered underneath the surface, which describes light interacting with a marble sculpture. The other options are all forms of surface reflection that BRDFs are designed to model.

    Read the full bite: BRDF: Modeling How Surfaces Reflect Light

  12. Question 12 of 30

    What is the fundamental consequence of a digital camera utilizing a Bayer filter for its image sensor?

    Show the answer

    Answer: c · Each photosite records only one color component, requiring software interpolation for full-color pixels.

    The card states that a Bayer filter allows each pixel to see only one color, and the full-color image is then reconstructed in software through a process called demosaicing. Option D is incorrect because the card explicitly states a Bayer filter does not provide 24 million full-color pixels directly.

    Read the full bite: Bayer Filter: Faking Full Color with a Filter Grid

  13. Question 13 of 30

    For many computer vision tasks, what is the main benefit of converting a color image to grayscale?

    Show the answer

    Answer: d · It reduces the computational complexity by representing each pixel with a single brightness value, aiding tasks focused on shape or texture.

    Grayscale conversion simplifies image data by reducing each pixel from three color values (RGB) to a single brightness value, making algorithms faster and easier to develop for tasks that rely on shape, texture, or contrast. Option C is incorrect because grayscale's primary purpose in computer vision is data simplification for machine processing, not enhancing visual clarity for human interpretation.

    Read the full bite: Grayscale Conversion: Seeing in Shades of Gray

  14. Question 14 of 30

    To ensure optimal image quality when an asset is needed at multiple display sizes, what is the recommended approach?

    Show the answer

    Answer: c · Store only the highest resolution version and generate each specific size from that original.

    The card states, "For assets needed at multiple sizes, always generate each version from the high-resolution original." This prevents the cumulative quality loss that occurs when an image is scaled multiple times, especially when downscaled and then upscaled, as data is permanently discarded with each downscaling operation.

    Read the full bite: Image Scaling: Resizing Pixels Without Ruining Them

  15. Question 15 of 30

    What is a significant drawback of applying histogram equalization to an image?

    Show the answer

    Answer: c · It can dramatically amplify existing noise, especially in dark regions.

    The card explicitly states that histogram equalization's "biggest weakness is that it can dramatically amplify noise." Option D is incorrect because the process is described as an "automatic method" that calculates the cumulative distribution function.

    Read the full bite: Histogram Equalization: Spreading Out Pixel Brightness

  16. Question 16 of 30

    In which scenario would applying a strong Gaussian blur be generally counterproductive or inappropriate?

    Show the answer

    Answer: a · When the goal is to preserve minute details and sharp boundaries in medical scans.

    The card explicitly states that Gaussian blur should be avoided when preserving sharp edges and fine details, such as in medical imaging, is critical, as a strong blur destroys this high-frequency information. The other options (A, B, D) are all listed as appropriate and beneficial uses of Gaussian blur.

    Read the full bite: Gaussian Blur: Smoothing Images with Weighted Averages

  17. Question 17 of 30

    When applying a median filter to an image, what is its key benefit compared to a simple averaging filter?

    Show the answer

    Answer: c · It effectively removes impulse noise while maintaining the sharpness of image edges.

    The median filter's primary advantage is its ability to remove impulse noise (like salt-and-pepper noise) without blurring important image edges, which averaging filters tend to do. It is also a non-linear operation, not a linear one.

    Read the full bite: Median Filter: Smoothing Images Without Blurring Edges

  18. Question 18 of 30

    Which of the following best describes the fundamental mechanism the Sobel operator uses to detect edges?

    Show the answer

    Answer: d · It calculates the gradient magnitude by measuring the rate of change in pixel brightness across small regions.

    The Sobel operator functions as a discrete differentiation operator, measuring the local rate of change in pixel brightness (the gradient) to identify edges. Option B is a tempting distractor, but Sobel uses weighted differences via convolution kernels to approximate a derivative, not just simple direct comparisons.

    Read the full bite: The Sobel Operator: Fast, Cheap Edge Detection

  19. Question 19 of 30

    To effectively remove both small bright specks and small dark holes from a binary image while preserving the main object's size, which operation sequence is most appropriate?

    Show the answer

    Answer: b · Opening followed by Closing

    Opening (erosion then dilation) removes small bright specks (salt noise) without shrinking the main object. Subsequent Closing (dilation then erosion) fills small dark holes (pepper noise) without expanding the main object, making this sequence ideal for preserving overall object size.

    Read the full bite: Morphological Transformations: Shaping Images with Kernels

  20. Question 20 of 30

    What is the primary advantage of the Canny edge detector over simpler methods like the Sobel filter?

    Show the answer

    Answer: b · It produces clean, thin, and continuous edge maps by effectively managing noise and connecting weak edges.

    The card highlights that Canny's design provides a more robust method that finds continuous, well-defined edges, which is achieved through its multi-stage process of noise reduction, thinning (non-maximum suppression), and connecting weak edges (hysteresis). Option A is incorrect because the card states simpler filters might be preferred if raw speed is the only priority, implying Canny is not faster.

    Read the full bite: Canny Edge Detector: Finding True Edges

  21. Question 21 of 30

    Which visual effect cannot be achieved using only an affine transformation?

    Show the answer

    Answer: d · Making an object appear to shrink as it moves further away

    Affine transformations preserve parallelism, meaning parallel lines remain parallel, which prevents them from modeling perspective effects like objects appearing smaller with distance. This requires a more general projective transformation. Rotating an image around its center point, while involving both rotation and translation, is fully supported by affine transformations.

    Read the full bite: Affine Transformations: Move, Scale, and Rotate Without Bending

  22. Question 22 of 30

    How does the Laplacian of Gaussian (LoG) primarily identify the center of a blob in an image?

    Show the answer

    Answer: a · By finding local extrema (peaks or valleys) after applying a Gaussian blur and then the Laplacian operator.

    The card states that after applying the Gaussian blur and Laplacian, 'the local extrema (peaks and valleys) mark their centers.' Option B is incorrect because zero-crossings indicate the edges of blobs, not their centers.

    Read the full bite: Laplacian of Gaussian (LoG) for Blob Detection

  23. Question 23 of 30

    What is the main drawback of using the Harris Corner Detector in computer vision applications?

    Show the answer

    Answer: b · Its performance is not robust to variations in image scale or resolution.

    The card explicitly states that a "key weakness is its sensitivity to image scale" and advises against its use when an application "must handle images at different sizes or zoom levels." Other options are either contradicted by the text (e.g., it's described as fast and effective) or not highlighted as its primary limitation.

    Read the full bite: Harris Corner Detector: Finding Sharp Changes in Images

  24. Question 24 of 30

    What unique characteristic makes a point suitable for detection by a corner detection algorithm?

    Show the answer

    Answer: d · Shifting a small window over it in any direction causes a noticeable change in pixel intensity.

    The card explains that a corner is identified because moving a small window over it in any direction causes a significant change in what is seen. Option B describes an edge, where intensity changes sharply in only one direction, not multiple.

    Read the full bite: Corner Detection: Finding Stable Points in Images

  25. Question 25 of 30

    What is the fundamental mechanism the Hough Transform uses to detect shapes in an image?

    Show the answer

    Answer: d · It identifies local maxima in a parameter space where edge pixels have cast votes.

    The card explains that the Hough Transform works by having each edge pixel 'vote' in a 'parameter space,' and the 'points where many of these curves intersect are local maxima—peaks of votes.' Option A describes template matching, which the card states the Hough Transform was created to overcome due to noise and imperfections.

    Read the full bite: Hough Transform: Finding Shapes by Voting

  26. Question 26 of 30

    For which task would Scale-Space representation be most advantageous?

    Show the answer

    Answer: d · Detecting features in an image without prior knowledge of their specific scale or size.

    Scale-space representation's primary purpose is to analyze image structures at all possible sizes, making it ideal for detecting features when their scale is unknown. Options B and D describe scenarios where the card explicitly states scale-space is unnecessary or computationally expensive, respectively. Option B describes a different image processing goal not directly addressed by scale-space's core benefit.

    Read the full bite: Scale-Space: Analyzing Images at Multiple Scales

  27. Question 27 of 30

    The primary purpose of subtracting a heavily blurred image from a lightly blurred image in the Difference of Gaussians (DoG) technique is to:

    Show the answer

    Answer: a · Isolate features of a particular size by effectively removing both fine-grained noise and large, uniform regions.

    The core idea of DoG is to isolate mid-sized details by canceling out both fine noise and large, uniform areas, as stated in the card's mental model. While DoG acts as a band-pass filter, it is an approximation and not intended for a precise mathematical representation of the frequency spectrum, making option D incorrect.

    Read the full bite: Difference of Gaussians: Finding Edges by Subtracting Blurs

  28. Question 28 of 30

    For which scenario would FAST corner detection be most advantageous compared to other methods?

    Show the answer

    Answer: c · Tracking objects in a real-time video stream on a resource-limited device.

    FAST is designed for speed, making it ideal for real-time applications on resource-constrained devices where low latency is critical. It is not robust to scale or rotation changes, nor is it prioritized for maximum accuracy in offline analysis.

    Read the full bite: FAST: High-Speed Corner Detection for Real-Time Vision

  29. Question 29 of 30

    What is the core principle behind HOG's ability to describe object shape robustly against lighting variations?

    Show the answer

    Answer: b · It summarizes local gradient orientations and normalizes these summaries within overlapping blocks.

    The card explains that HOG computes gradient directions to capture an object's shape and normalizes these summaries within overlapping blocks to achieve robustness against lighting changes. The other options describe mechanisms not central to HOG's operation, such as color analysis, average intensity, or texture patterns.

    Read the full bite: Histogram of Oriented Gradients (HOG)

  30. Question 30 of 30

    What is the most significant advantage of using SIFT features for image matching tasks?

    Show the answer

    Answer: c · They provide descriptors that are robust to changes in image scale.

    SIFT's primary strength, as highlighted in the card, is its ability to find and describe features that remain stable despite changes in image scale. The card explicitly warns against the misconception that SIFT is invariant to all changes, making option B a tempting but incorrect distractor.

    Read the full bite: SIFT: Finding Image Features That Scale

Could you explain these out loud?

That is what an interview actually tests. Tezvyn gives you questions like these with what the interviewer is really checking, the answer that lands, and the mistake that ends the conversation, in the four minutes before your next meeting.

The iPhone app is on the way

We are building it. Until it lands, nothing here is held back from you: every interview card, your saved cards, streaks and the job board all work in Safari, plus hundreds of free practice quizzes of thirty questions each. Sign in and it all carries over to the app the day it arrives.

Want it as an icon? Tap Share at the bottom of Safari, then Add to Home Screen. It opens full screen and the cards you have read stay available offline.

Get it on Google PlayiPhone app coming soon