Blurring and Unblurring

Spatial frequencies

The process of blurring or smearing an image, and its inverse (sharpening or unsmearing) is best understood in terms of spatial frequencies. While an exact description requires the use of Fourier analysis, some idea of what's involved can be conveyed through pictures.

Just as any well-behaved function of one variable can be represented as a sum of many sinusoidal components, a two-dimensional distribution (such as the brightness in an image, as a functions of the x and y coordinates) can also be represented as a sum of sinusoidal components. The main difference is that these components have an orientation (i.e., a direction) as well as a frequency.

hor.stripes vert.stripes

Here you see pictures of two such components whose spatial frequencies have the same magnitude, but different directions:

The sinusoidal grating on the left varies only in the x direction; the one on the right varies only in the y direction. (We can also have gratings that vary along other, oblique directions; but they're more tedious to draw.)


high-freq. low-freq.

On the other hand, here are two spatial-frequency components with the same orientation, but different magnitudes. The frequency of the one on the left is 3 times higher than that of the one on the right.

(Actually, I've used the same image here twice, but told your browser to squeeze it together in the left-hand picture, and expand it on the right.)


The examples above are what might be called monochromatic gratings: they have a single spatial frequency. But it's more useful to show a range of frequency in a single picture. Here's an example of a grating whose frequency increases linearly from left to right:

FM grating

I show this one at low contrast, because later examples will show the effects of different enhancements, which increase the contrast of some frequencies.

I hope these are enough to convey the general idea of spatial frequencies. Now, let's do some blurring, and then try to undo it.

Blurring

To begin with, let's take that frequency ramp and smear it with a Gaussian blur, with a width of 10 pixels. Here's what we get:

blurred FM grating

You see that the low frequencies (at the left) are hardly affected; but the high frequencies, on the right, have practically disappeared. The effect of blurring is to attenuate the high spatial frequencies.

The mathematical operation of convolution corresponds to multiplying  the Fourier transform of the original image with that of the convolution kernel; this product is the transform of the blurred image. So convolution (in ordinary space) corresponds to multiplying the various frequency components of the image by a filter function (in frequency space).

So the filter function  of the blurring is the ratio of the Fourier transforms of the output and input images, as a function of spatial frequency. And this filter function is just the Fourier transform of the Gaussian kernel we used to do the blurring. As the Fourier transform of a Gaussian is also Gaussian in shape, we have a Gaussian filter here.

Unblurring tools and their problems

Evidently, un blurring requires a filter function that increases with frequency, so as to boost the high frequencies (which were attenuated by the blurring) back to their original values.

Before we try to un-blur the blurred image, let's try applying various sharpening filters to the original low-contrast frequency ramp shown above, to see what their filtering effects really are. As I'm a Linux user, I'll offer examples from the Gimp (the Gnu Image Manipulation Program); PhotoShop and other packages offer similar facilities.

Gimp's Sharpen  filter

In Gimp 2.2, which is what I currently have, if you follow the chain of menus Filters -> Enhance -> Sharpen , you get a simple sharpening filter that offers a single adjustable parameter: the “sharpness”. The default amount is 10%, which isn't much. My problem needs lots  of sharpening; so I'll try a few relatively hefty amounts. For clarity, I've put the original frequency ramp at both the top and bottom of this stack of images, with the sharpness values at the right:

FM raw original
FM sh60 60
FM sh80 80
FM sh90 90
FM sh93 93
FM sh95 95
FM sh97 97
FM raw original

There's moderate contrast enhancement at the higher frequencies, but it's not spectacular. And, at the higher enhancements (beyond about 90), there are clearly high-frequency artifacts introduced, at a scale of just one or two pixels. (There's also a lack of enhancement at the very edges of the image, which are exaggerated in width here; the actual image strips are only 12 pixels wide, but have been expanded to 100 pixels for display.)

Clearly, this filter is an edge-sharpener. It appears to be combining the Laplacian (second spatial derivative) of the original image with the original, so that the “sharpness” is the percentage of Laplacian in the final image.

row trace of FMsh95 Here's a trace of a row from the middle of the 95%-sharpened image. The parabolic increase in amplitude of the sinusoidal fringes with increasing frequency (from left to right) is what you'd expect if the second derivative is being added: differentiation of a sinusoid multiplies it by the frequency, so a second derivative multiplies by frequency squared .

Unfortunately, there is a lot of noise added to the lower frequencies, so this isn't a practical way to do a lot of high-pass filtering. (I'll explain the origin of that noise later.) And this much sharpening is already saturating a few of the highest-frequency fringes, at solid black and white.

Unsharp Mask

A more versatile filter is the Unsharp Mask, which offers both a spatial scale (called “Radius” in its menu) and an amount. Without rummaging through the source code, it's difficult to find accurate information on the actual algorithm used; but the discussions here and here indicate that it's the following:
  1. Convolve the original image with a Gaussian of a specified standard deviation (called “Radius” in Gimp)

  2. Subtract the blurred image from the original; let's call the result the difference  image.

  3. Add some multiple of the difference image to the original. The multiplying factor is called “Amount” in Gimp.
This sum is the final result. If A is the Amount, B is the Blurred image, I is the Initial image, and F is the Final image, we have

F   =   I + A(I − B)   =   (A + 1)I − AB


Note: The Gimp (and PhotoShop, I understand) has another parameter, called “Threshold”, which is used for noise suppression when processing photographs. The idea is that in nearly featureless areas, the difference image is not added to the original unless the difference exceeds this threshold value, which suppresses the amplification of noise smaller than the threshold. We can ignore this here, leaving the Threshold at its default value of zero.

A little thought shows that the smeared image is exactly the same as the original where the original has a constant brightness gradient in an area bigger than the Gaussian blurring kernel; this leaves the processed picture unchanged. It's only where the brightness gradient  is changing that we get some effect.

So the Unsharp Mask operation, much like the Sharpen filter, basically adds the second spatial derivative of the picture to the original, making peaks higher and valleys deeper. Because each differentiation adds a factor of the frequency, this makes the filter function increase with the square  of the frequency, at low spatial frequencies.

On the other hand, the blurred image has essentially constant gradients within areas smaller than the Gaussian convolution kernel. That means that all smaller (i.e., higher-frequency) details are amplified by practically the same amount. So the contrast enhancement of fine details becomes constant for features smaller than the blur size; the filter function levels off at high frequencies.

Filter functions

Let's look at the corresponding filter functions. The original image:
spacer FM raw
FM row
is compared here with a plot of its data values along a row. You can see that (apart from a little sampling noise at the higher frequencies, where some samples don't fall exactly at the extrema) the amplitude of the original sinusoidal fringes is independent of frequency. Our input image has a flat frequency spectrum.


GB10 row Now let's look at a row-trace of the blurred version. (It's displayed here at half-scale; we don't need such a big plot as the one above.)

The little artifact at the right end can be ignored. It's a result of the way the Gaussian-blur module treats the edges of pictures: it reflects the image at the edge. As the original image was below the average level at the right-hand edge, the reflection of this low region has pulled the last few pixels down a bit.

As the Fourier transform of a Gaussian is just another Gaussian, we expect the filter function — which is just the amplitude of the envelope of the blurred image, in this case — will have that familiar bell-shape; and you see it does. (Only half of the bell shows here, of course; we don't try to show the negative frequencies, which would just be the reflection of this diagram about the vertical, zero-frequency, axis.) You can think of the filter as the upper envelope of this row-trace figure, if you just shift the horizontal axis up to the middle of the figure.

Now, bearing in mind the relation

F   =   I + A(I − B)   =   (A + 1)I − AB

between the Initial and Final images in the unsharp-masking process, we can easily see what the spatial filtering of the unsharp-masking operation must look like. The linearity of Fourier transforms allows us to interchange the order of operations: the sum of two transforms is the same as the transform of the sums of the original functions. So the differencing and adding of functions in the unsharp-masking operation corresponds to the same differencing and adding of their transforms, in frequency space.

So, as the frequency filter corresponding to a Gaussian blur also has that shape, the filter corresponding to the difference image is just   (1 minus  this Gaussian)   — in other words, it's shaped like the lower  envelope of the blurred-image row-trace above.

This makes the filter function of the Final image (the sum of the Initial and Difference images) go from 1 at low frequencies to 2 at high ones, if we use an “Amount” of 1. [If we use an Amount of 2, the high-frequency limit is 3; in general, the high frequencies saturate at a value that's 1 more than the Amount used, because of the (A + 1) factor in the equation above.]

Unsharp-Mask filter plots Mathematically, the Gaussian filter of the blurred image is something like exp(−f2), where f is the spatial frequency (apart from a frequency-scaling factor that's inversely proportional to the width of the convolution kernel). So the filter function of the unsharp-mask operation is something like

(A + 1) − A exp(−f2) ,

where A is the Amount. Here's a plot of this function, for A = 1 and 2.

Because the peak of a Gaussian is parabolic, the quadratic decrease  of the Gaussian for small arguments explains the filter's quadratic increase  at low frequencies. The sloping side of the (inverted) Gaussian produces the nearly linear filtering at intermediate frequencies (around column 300 in the row trace above); and the flat tail of the Gaussian accounts for the flat roll-over of the unsharp-mask filter at high frequencies.

Questions of scale

The nearly linear part of the filter, where it has about half of its full (high-frequency) effect, occurs where the width of the Gaussian is about equal to the period of the sinusoidal fringes. In the above example, the Gaussian radius of 10 pixels means a diameter of 20; and the fringe spacing where the linear part occurs is also about 20 in the example above (around column 300).

Unfortunately, the people who wrote the Gimp's unsharp-mask routine adopted a different scaling convention for the radius of the blur; it turns out that you have to use a considerably smaller  radius value in applying the UM enhancement to get the effect you'd expect from the remarks in the paragraph above: a radius of 2 or 3 in the UM enhancement corresponds to our blur of 10, above.

Examples

Some specific examples will help illustrate these effects. We'll start with our low-contrast sine-wave ramp, apply a few unsharp masks to it, and use row traces to illustrate the filter functions.

Here's the Unsharp Mask with radius 3 and amount 1. We expect the trace to look like (1 minus  the Gaussian-blur filter) shown above. First, the unsharp-masked image:

UM 3.0, 1.0 image

And then its row-trace plot: —> UM 3.0, 1.0 row

Notice that the amplitude of the high-frequency fringes is just about twice that at low frequencies, as we'd expect for A = 1. This nicely shows how the filter levels off at high frequencies; but it doesn't show the parabolic part at low frequencies well, because there are so few fringes visible at the left side.

To see the behavior at low frequencies, we must use a smaller radius. I'll drop down to 1.0, just to emphasize the low-frequency region.

UM 1.0, 1.0 image
UM 1.0, 1.0 row This shows the effect of unsharp masking with radius 1 and amount 1.0; the parabolic start of the filter is well shown, but the frequency ramp doesn't extend far enough to reach saturation.

The images don't look very different to the eye, apart from a little less contrast in the middle frequencies in the second case; but the numerical row traces clearly show the differences. And it's the numerical values we ultimately have to worry about.

These two examples show the effect of manipulating the Radius parameter of the unsharp-mask procedure. How about the Amount?

As this last example leaves plenty of room for contrast enhancement, I'll keep the radius at 1.0 and raise the Amount to 4. The image below shows the result.

UM 1.0, 4.0 image
UM 1.0, 4.0 row Now the enhancement at high frequencies is quite obvious. Notice that the low frequencies remain almost unchanged.

The row-trace plot at the right shows the effect more quantitatively. The parabolic increase at low frequencies becomes a more nearly linear increase at high ones.

More scaling

If you experiment with these parameters, you'll find that increasing either one tends to increase the contrast at high frequencies. Let's look into that more closely: are they really equivalent?

First, notice that the initial parabolic increase changes when the Radius value changes. As this is just the effect of adding a second derivative — or rather, a second difference , where Radius takes the place of a tabular interval — it is easy to see that doubling the Radius is like quadrupling the Amount, at low frequencies. In other words, the low-frequency increase of the unsharp-mask filter is just proportional to the product AR2.

Here's a comparison to illustrate that: first, the (Radius, Amount) combination (1, 4) that we just had above; and second, the combination (2, 1):

UM 1.0, 4.0 image  
  Radius = 1
  Amount = 4
UM 1.0, 4.0 image  
  Radius = 2
  Amount = 1

On the left side, these are almost exactly the same. But at the right, it's clear that the (1, 4) combination has much higher contrast at high frequencies than the (2, 1) setting. Obviously, that's because the former filter keeps increasing until it has raised the high-frequency contrast a factor of 5, while the latter levels off at 2. [Remember that the limiting factor is (A + 1), not just A.]

If you look closely, you'll see some slight differences between these two, even at low frequencies. While the average  contrast of the low-frequency fringes is closely matched in the two cases, there are some faint high-frequency artifacts present in the (1, 4) case that are not visible in (2, 1).

Artifacts

These artifacts are still more obvious if we look at the result of an Unsharp Mask with Amount = 5 (the maximum amount the UM filter allows):

UM 1.0, 5.0 image  
  Radius = 1
  Amount = 5

There are clearly spurious fine stripes in the low-frequency fringes. So we can't keep increasing the Amount value indefinitely.

Where do these spurious features come from? Well, remember that all these images (including the Blurred image that's the intermediate step in the Unsharp Mask procedure) are stored to just 8-bit precision: a scale from 0 to 255. That means there are little jumps in the Difference image that are magnified when we multiply it by the Amount.   A 1-bit discontinuity becomes 5 steps on the scale from 0 to 255 when it's multiplied by an Amount of 5. That's big enough to be visible.

What's happening here is that the high-pass filter is amplifying the little errors caused by limited precision. (Sometimes these errors are called digitizing  noise, or “quantization” noise. As it varies randomly from one pixel to the next, it's a high-frequency component of the original image that's greatly enhanced by the Unsharp Mask filter.) This is very reminiscent of the high-frequency noise we saw in the Sharpen filter; indeed, it's exactly the same effect.

And we are starting with mathematically exact values. In a real-world image, there will be noise that may amount to several parts in 255 to begin with, even before amplification by the Amount.

Evidently, this is why the Gimp's “Amount” slider is limited to a value of 5.

We clearly can't use Amounts much larger than 5 before incurring unacceptable artifacts. This limits the amount of image restoration that can be done.

Unblurring the blurred image: simple examples

Now, let's try un-blurring the blurred image. I noted above that the radius scaling differs by a factor of about 4 between the Gimp's “Gaussian blur” and “Unsharp Mask” filters, so that a Radius of 2 or 3 in the latter is needed to achieve blurring similar to the value of 10 we used in the former to produce our blurred test image.

Here's what happens if you un-blur the blurred version with a Radius of 3 and an Amount of 1; the original (unblurred) image is shown just below the un-blurred one:

blurred version  
  Blurred
  version

GB10 + UM 3.0, 1.0 image  
  Radius = 3
  Amount = 1
FM grating  
  Original
  version

Well, that isn't very good. The unblurring worked pretty well at low frequencies, but was completely inadequate at high ones. That suggests that we should have tried a Radius of 2 instead of 3. Here's the result of trying that:

blurred version  
  Blurred
  version

GB10 + UM 2.0, 1.0 image  
  Radius = 2
  Amount = 1
FM grating  
  Original
  version

That's slightly worse; there's even less boost in the middle range. We forgot that the initial quadratic rise is proportional to AR2 — so lowering the radius lowered the rate of increase with frequency. So, let's try Radius = 2, Amount = 2:

blurred version  
  Blurred
  version

GB10 + UM 2.0, 2.0 image  
  Radius = 2
  Amount = 2
FM grating  
  Original
  version

That's clearly better, though those first few low-frequency fringes now seem a little too contrasty. But, as this seems to be going in the right direction, let's keep the low-frequency boost the same and extend the benefit to higher frequencies, by going to Radius = 1, Amount = 4:

blurred version  
  Blurred
  version

GB10 + UM 1.0, 4.0 image  
  Radius = 1
  Amount = 4
FM grating  
  Original
  version

Now it's plain that the low-frequency boost is a bit too large, while the high-frequency increase is still inadequate. And we clearly can't fiddle with things and improve the result much; this kind of discrepancy will always occur with the Unsharp Mask filter.

What's the problem? Can't we do any better?

Filter functions again

If you stop and think about it, the inverse of the Gaussian Blur filter is just its reciprocal, in frequency space; that is, we need to divide the Fourier transform of the image by the GB filter function to undo the blurring. The Gaussian-blur filter has the form

G(x) = exp(−x2)

(where x is a scaled spatial frequency); and its reciprocal is just

G−1(x) = exp(x2) .

It may be useful to recall that

exp(x) = 1 + x + ½x2 + …

so that

exp(x2) = 1 + x2 + ½x4 + … ,

which is the inverse of the Gaussian-blur filter.

Inverse of Gaussian-blur filter Here's a plot of that function. Instead of increasing quadratically at first, and then flattening out (as the Unsharp-Mask filter does), it increases quadratically and then goes shooting off towards infinity, ever more steeply.

Clearly, we need something that becomes steeper  than the initial quadratic increase; but the simple unsharp-mask filter becomes flatter  instead. How can we get the increasing slope at high frequencies?

More series expansions

Let's look at the series expansion for the Unsharp-Mask filter,

UM(x)  =  (A + 1)  −  A exp(−x2) .

(Once again, x is a scaled  frequency that allows for the radius of the Gaussian.) Expand the exponential, remembering that exp(−x) = 1 − x + ½x2 − … :

UM(x)  =  (A + 1)  −  A ( 1 − x2 + ½x4 … )
or
UM(x)  =  1 + A x2 − (A/2)x4 … .

So the Unsharp Mask filter has the right quadratic term, if we choose A = 1, but the wrong sign for its fourth-power term. Is there any way to overcome this defect?

Double filtering

Suppose we apply a second  unsharp mask. Applying a second UM filter produces an image whose Fourier transform is multiplied by the product  of the (transforms of the) two filter functions. We want this product to approximate the desired inverse of the Gaussian-blur filter over some interval.

Even if we just apply the same UM filter twice, we see that some improvement is possible: the square of the UM(x) function given above is

UM2(x)  =  [1 + A x2 − (A/2)x4 … ]2  =  1 + 2A x2 + (A2 − A) x4 … .

If we choose A so as to make the coefficient of the x2 term unity, as in the desired inverse of the Gaussian, we get A = 1/2. This gives the squared filter the form

UM2(x)  =  1 + x2 − ¼ x4 … .

The fourth-power term still has the wrong sign, but it's only half as big as before.

As these functions are known exactly, it's preferable to determine the best-fit approximation in frequency space, rather than experiment with filters and images — which would require a trial-and-error search of a four-dimensional space, as there are four parameters to be determined: two Radius values, and two Amounts, for the two Unsharp Masks.

The only practical difficulty is that the product of two UM filters is extremely nonlinear in all four parameters. However, a good non-linear fitting program can handle the problem.

But there's a catch: if we try this blindly, allowing all the parameters to vary independently, we find that the radii tend toward zero, while the amounts march off toward infinity. What's happening is that the fitting tries to push the effect of that wrong-sign fourth-power term as far to the right as possible.

But we saw above that increasing the Amount beyond a modest value (on the order of 10) increases the digitizing noise unacceptably. So we need to limit the Amount of the combined filter.

Fitting details

To see how to do this, let's look at the details of the combined filter function. The spatial argument of a Gaussian blur is inversely proportional to (i.e., normalized by) the blur radius; so the frequency argument of its transform is directly proportional to the radius. That is, in frequency space, the filter function's series expansion looks like
UM(x)  =  1 + A x2 − (A/2)x4 … ,

where x = fR. If we had the product of two such functions, we would need to put subscripts on the A's and R's; but this is more complexity than we need to go into here.

More filters?

Another possibility is to use three, four, or more successive Unsharp Mask operations, in hopes of getting rid of the negative fourth-power term in the series expansion. However, if you look at higher and higher powers of the series for a single UM filter, you find that the term diminishes, but does not change sign. For two filters, after choosing A to make the x-squared term have the right magnitude, we found the coefficient of x4 was 1/4 (instead of the 1/2 that a single UM filter produced). For three filters, we find 1/6; for four, 1/8; and so on. This is not a promising line of attack.

Back to the Laplacian

Instead, let's consider the simple “Sharpen” filter again. We saw that it simply added a second-derivative term to the image, corresponding to a quadratic frequency term in the filter. But, unlike the Unsharp Mask, there's no flattening-out at high frequencies.

To use this filter quantitatively, we need to understand its parameters better. The sharpness you specify in the Gimp's menu appears to be the percentage of the Laplacian in the final result. If we let S be the sharpness value (converted to a fraction from a percentage), that means that S is the fraction of Laplacian (proportional to frequency squared) in the final image, and that  (1 − S)  is the fraction of the original in the final result. The ratio of second-order to zero-order terms is therefore  S/(1 − S) . This ought to be proportional to the product AR2 for the Unsharp Mask filter at low frequencies.

Before comparing the two types of filter, let's make sure that this interpretation of S is correct. If the amount of frequency-squared correction is indeed proportional to  S/(1 − S) , we'd expect that applying the Sharpen filter twice would give an initial rise proportional to twice this [because (1 + x)2 = 1 + 2x + x2]. So applying an 80% sharpening twice should be nearly the same, at low frequencies, as applying a 90% sharpening once.


Actually, the 80% sharpening gives a correction factor of 0.8/(1 − 0.8) = 0.8/0.2 = 4; applying this twice will give twice as fast an increase at low frequencies, or 2×4 = 8 times the frequency squared. But the 90% sharpening gives an initial increase of 9 times, instead — a little more than 8. Still, the difference is not great.

Here's the comparison of these two processes. The upper image is the frequency ramp, sharpened by 80% twice. The middle image is the ramp, sharpened by 90% just once. And the bottom image is the original, unsharpened frequency ramp.

FM sh80 + sh80 sh80 twice
FM sh90 sh90
FM raw original

We see that indeed the low- and mid-frequency enhancements are similar, though of course the upper image is more contrasty at high frequencies, because the double sharpening has introduced a positive  term proportional to the fourth power of the frequency — which is just what we need for the inverse of the Gaussian blur!

Analysis

Let's look more closely into such double sharpening. If we add some proportion P of the second derivative, so that the frequency filter of a single sharpening pass is (1 + Px2), then the filter resulting from two passes is

(1 + Px2)2 = 1 + 2Px2 + P2x4.

Recalling that the inverse of the Gaussian filter was just

exp(x2) = 1 + x2 + ½x4 + … ,

we see that P = 1/2 gives the correct coefficient of the x2 term; but this makes the coefficient of the next term 1/4, instead of the required 1/2. So, even doing the sharpening twice, we still don't get enough of the fourth derivative. Still, we at least have the right sign  for this term, which considerably increases the high-frequency content of the image.

Of course, a direct result of this increased enhancement of high frequencies is a corresponding enhancement of the quantization noise in the low-frequency fringes. That's unavoidable when you do the sharpening twice.

Just as in the case of the Unsharp Mask filter, we can expect to boost the high frequencies still more by repeated applications. If we apply Sharpen three  times, we get

(1 + Px2)3 = 1 + 3Px2 + 3P2x4 + P3x6.

Now to get the desired coefficient of the x2 term, we need P = 1/3, which will make the coefficient of the x4 term 1/3 instead of the needed 1/2. That reclaims a third of the deficit we had with only two applications.

But we're once again heading into diminishing returns. If we were so tenacious as to try for four applications of the Sharpen filter, we'd obviously need P = 1/4 to get the right x2 term, which would make the coefficient of x4 equal to 6/16 or 3/8 — still only 3/4 as big as the desired coefficient of 1/2.

In any case, at these levels of approximation, the remaining discrepancy is probably comparable to the errors introduced by assuming that real-world blurring is exactly Gaussian. It hardly seems worth while investigating still more repeated applications of the filter.

So let's see what these repeated sharpenings actually do to our images.

Scaling problems

However, we have a problem: we haven't related the amount of second derivative we called P, in the section above, to the actual parameter S used to specify the “amount of sharpening” in the Gimp filter. Because the various different implementations of the Laplacian filter will give slightly different results, it seems best to try some values of S and see what results they produce.

Recall that the amount of second derivative added by the Unsharp Mask filter was proportional to AR2. Here's a comparison of the twice-applied S=80 sharpening with Unsharp Masks of radius 1 and amounts 2 and 4:

UM 1.0, 2.0 image  
  Radius = 1
  Amount = 2
FM sh80 + sh80   sh80 twice
UM 1.0, 4.0 image  
  Radius = 1
  Amount = 4

We see that the low-frequency enhancement is similar to the UM filter with AR2 = 2, while the high-frequency boost is more like the AR2 = 4 case.

Now, again recalling that the smearing of the original frequency ramp with a Gaussian blur of radius 10 was corrected at low frequencies by an Unsharp Mask with AR2 = 3 or 4, it appears that we'll need to apply two Sharpen filters with S = 85 or 90 to restore that blurred image.

Here are these two results (denoting a Sharpen 85 filter as sh85 for brevity) compared to the original, unsmeared ramp:

FM raw original
GB10 + sh85 + sh85 image sh85 twice

GB10 + sh90 + sh90 image sh90 twice

FM raw original

Sure enough, the sh85 filter applied twice isn't quite enough, and the double sh90 filtering is too much (at low and moderate frequencies). And, as expected from the previous discussion, even this doesn't restore the highest frequencies properly. It looks as if a double application of about an 87% sharpening would do fairly well.

We might also consider using three  sharpenings in a row. To achieve the effect of two sh87 filters, we'd need to use about 80% sharpening each of the three times [remembering that the amount of second derivative added each time is roughly proportional to (100 − S).] So here's a comparison of those two possibilities:

FM raw original
GB10 + sh87 + sh87 image sh87 twice

GB10 + sh80 + sh80 + sh80 image sh80 3 times

FM raw original

The double application of sh87 does a pretty good job, but (as expected) it fails to restore the highest frequencies. The triple application of sh80 certainly brings up the highs; but the concomitant exacerbation of artifacts is very offensive. However, this is a sine-wave image, which makes the artifacts painfully obvious; it isn't obvious how this would do with a blurred binary (black-and-white) image.

Transfer-curve artifacts

You probably noticed that the triple application of the sh80 filter produced an image that looks lighter, overall, than the double application of sh87. That's an artifact different  from those discussed above: this one is due to the nonlinearity of the transfer curve.

What's happened is that the extreme amplification of digitizing noise has made some pixels extremely light or dark. As we've been working with images that are linear in intensity, the display's large gamma exaggerates the lightness of the brightest pixels, but compresses the darkness of the darkest ones. The nonlinearity of the monitor's transfer curve partially rectifies some of the amplified high-frequency noise.

So here's that last comparison again, but with all the images corrected for the standard sRGB monitor gamma:

FM raw, gamma-corrected original
GB10 + sh87 + sh87 image, gamma-corrected sh87 twice

GB10 + sh80 + sh80 + sh80 image, gamma-corrected sh80 3 times

FM raw, gamma-corrected original

You can see that the difference in overall lightness of the highly-enhanced image has disappeared (though there remain occasional patches that are too light or dark). Of course, the gamma correction has made all  the images much lighter than they originally were.

A Prescription

Now for the punch line. We want a rule of thumb for choosing the processing of blurred images.

The first thing to do is estimate the spatial extent of the blurring. In the case of our example blurred ramp, the line trace shows that the amplitude of our sinusoidal fringes is reduced to half near column 400 of the ramp image, where there are about 6 or 7 cycles per hundred pixels. That corresponds to a period of about 17 pixels per cycle.

The best processing seemed to be a double application of the Gimp's “Sharpen” filter, with a sharpening parameter of 87 each time.

As the amount of degradation goes with the square  of the size of the blurring kernel, we expect to need a sharpening that is likewise proportional to the square of the blur size. The amount of sharpening (in per cent) was proportional to  S/(100 − S)  for a single pass of the Sharpen filter, or twice this for two passes. This should be proportional to R2 (where now R is the characteristic size of the blur — which I take to be 17 pixels in the example.) Writing the proportionality constant as K, we have

2S/(100 − S)  =  KR2 .

If we adopt R = 17 pixels and S = 87 (per cent) as a satisfactory solution for our example above, we find K = 0.046. Solving the equation for S, we find that

S  =  100KR2/(2 + KR2) ,
or, for K = 0.046:
S  =  4.6 R2/(2 + 0.046R2) .

This is the value of S to be used in the Gimp's “Sharpen” filter, twice, to get a fairly good restoration of the attenuated high spatial frequencies in the scanned image.

Caveats

The main practical problem will be choosing the blur size. I've taken R to be the period of sinusoidal features whose amplitude is reduced a factor of 2 by blurring. Real scanned images don't contain simple sinusoidal (periodic) features. Nevertheless, we often see hatching used for shading, which may approximate nice periodic features (though they are square waves rather than sine waves). Isolated lines that are reduced to half contrast can also be used; then the width of the line is about half the period, and R should be taken as twice the line width.


 

Copyright © 2006 – 2008, 2012, 2020 Andrew T. Young


Back to the . . .
introduction to image scanning

or the GF home page

or the website overview page