A short quiz on convolution and friends

Adrian F. Clark

  1. What is the effect of convolving an image with the mask $$\pmatrix{0 & 1 & 0\cr 0 & 0 & 0\cr 0 & 0 & 0\cr}$$

  2. What is matched filtering?

  3. What is a morphological opening?

  4. What is the effect of convolution with a 3 x 3 mask with each coefficient set to 1/9?

  5. What is the effect of convolving an image with the mask $$\pmatrix{0 & 1 & 0\cr 1 & -4 & 1\cr 0 & 1 & 0\cr}$$

  6. How does the time taken to perform a convolution vary with the dimension of a (square) mask?

  7. Why is it often better to use the median then the mean when performing a convolution?

  8. What is a morphological grey-level expand?

  9. For convolution of a single-channel 2D image with a 2D mask, how many nested loops are there in its implementation in software?

  10. What is the effect of convolution with the following mask? $$\frac19 \pmatrix{1 & 1 & 1\cr 1 & 1 & 1\cr 1 & 1 & 1\cr}$$

  11.