Convolution is an operation that combines two signals to produce a resulting signal. Convolution is widely used in image processing to filter images. Convolution is also used to explain the process of sampling in computer graphics.
A. (5 points) A box-shaped pulse is a very simple signal. Suppose the box has a width equal to 1 and a height equal to 1. Draw the resulting signal formed by convolving a box with itself. Make sure you clearly label the width and the height of the result.
Answer:
3 pt for shape
1 pt for range
1 pt for height
C. (10 points)
Suppose a discrete digital image was created by sampling a bandlimited continuous image. That is, that the continuous image had no frequencies greater than half the sampling rate. Suppose further, that a continuous image is reconstructed from the sampled image using bilinear interpolation. That is, the values between pixels are generated by linearly interpolating in x, and then linearly interpolating in y. Is the output image the same as the input image? Why or why not? Answer:
5 pt for saying:
The Nyquist limit requires a perfect reconstruction filter, which is a 2D sinc function in this case, not bilinear interpolation. Bilinear interpolation is a first-order approximation to the sinc function, but is not exact, and thus does not give back the exact answer.
Bilinear interpolation makes the reconstructed image's first derivatives discontinuous, which requires infinite freqencies in the Fourier domain. Since the input image is bandlimited, it has a finite number of frequencies, and thus cannot be the same image.
[email protected]