A short quiz on convolution and friends

Adrian F. Clark

  1. What is a morphological grey-level shrink?

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

  3. What is the effect of convolving an image with a +-shaped mask where the central pixel is -4 and its neighbours to north, south, east and west are 1?

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

  5. What is a morphological grey-level expand?

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

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

  8. What is a morphological opening?

  9. The Laplacean mask is useful for:

  10. What is the effect of convolving an image with a +-shaped mask?

  11.