Precept 5: On assignment 2

Some remarks:

Sharpening

An example is probably best to explain why the method used actually works.

Consider the encircled pixels: we're going to blur them by replacing their value with the average of the values of itself and its eight neighbours.

These averages are 3.11 for the pixel with intensity 3, and 3.67 for the pixel with intensity 4: in other words, the boundary between the area with intensity 4 and the area with intensity 3 has become smaller: the image is less sharp = blurred.

If we now extrapolate by adding the difference between the original and the blurred image to the original image, we get:
I = 3 + (3 - 3.11) = 2.89 and
I = 4 + (4 - 3.67) = 4.33
Now the difference is larger, and the image is sharper.


Patrick Min, CS Department, Princeton University
Last modified: Mon Oct 14 20:41:50 1996