0
0
Computer Visionml~5 mins

Blurring and smoothing (Gaussian, median, bilateral) in Computer Vision - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is the main purpose of blurring or smoothing an image?
Blurring or smoothing reduces noise and small details in an image, making it easier to analyze or process by removing unwanted variations.
Click to reveal answer
beginner
How does Gaussian blur work on an image?
Gaussian blur uses a weighted average where pixels near the center have more influence, following a bell-shaped curve, to smooth the image gently.
Click to reveal answer
intermediate
What makes median blur different from Gaussian blur?
Median blur replaces each pixel with the median value of its neighbors, which is very effective at removing salt-and-pepper noise without blurring edges much.
Click to reveal answer
intermediate
Explain the bilateral filter and its advantage.
Bilateral filter smooths images while keeping edges sharp by considering both spatial closeness and pixel intensity difference, preserving important details.
Click to reveal answer
beginner
Which blurring method is best for removing salt-and-pepper noise?
Median blur is best for salt-and-pepper noise because it replaces pixels with the median of neighbors, effectively removing outliers without blurring edges.
Click to reveal answer
Which blurring technique uses a bell-shaped curve to weight neighboring pixels?
ABox blur
BMedian blur
CBilateral filter
DGaussian blur
Which filter is best at preserving edges while smoothing?
AGaussian blur
BBilateral filter
CMedian blur
DAverage blur
What does median blur replace each pixel with?
AMedian of neighbors
BMean of neighbors
CMaximum of neighbors
DMinimum of neighbors
Which noise type is median blur especially good at removing?
AGaussian noise
BSpeckle noise
CSalt-and-pepper noise
DPoisson noise
What is a downside of Gaussian blur compared to median blur?
AIt blurs edges more
BIt cannot remove noise
CIt is slower to compute
DIt only works on color images
Describe the differences between Gaussian, median, and bilateral blurring methods and when you might use each.
Think about how each method treats edges and noise.
You got /6 concepts.
    Explain why bilateral filtering is useful in image processing compared to simple Gaussian blur.
    Focus on edge preservation and noise smoothing.
    You got /4 concepts.