HiveBrain v1.2.0
Get Started
← Back to all entries
patternMinor

Which Is a Better Way of Obtaining Scales, Gaussian Blur or Down Sampling?

Submitted by: @import:stackexchange-cs··
0
Viewed 0 times
obtainingblursamplingwaybetterdownwhichscalesgaussian

Problem

In computer vision, scales are important when we carry out a scene analysis. Choosing different scales affect the result of the analysis. For example, if a face is relatively small in the scene, then the details including nose, eyes will be omitted. On the other hand, details on larger faces become relatively more salient.

I know both Gaussian Blur with different sigmas and Down Sampling on the image can generate different scales. Which is more reasonable on a cognitive sense?

Solution

Down sampling may discard relevant features, while blurring should not.

As a toy example, a down sample may remove a pixel which is a local maxima, while a blur operation will preserve the maxima by increasing the values of nearby pixels. If the local maxima corresponds to an interesting feature, it may still be discernible by the human eye after blurring.

From a computational sense, Laplacian pyramids are able to reconstruct an image precisely because a blur-subtract operation preserves the "information" in the scene.

Context

StackExchange Computer Science Q#3310, answer score: 3

Revisions (0)

No revisions yet.