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 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 a morphological grey-level shrink?

  4. 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?

  5. What is matched filtering?

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

  7. What is a morphological grey-level expand?

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

  9. What does a morphological opening tend to do?

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

  11.