What is the effect of convolving an image with the mask $$\pmatrix{0 & 1 & 0\cr 0 & 0 & 0\cr 0 & 0 & 0\cr}$$
the image is shifted down one pixel
What is matched filtering?
designing a mask that matches a desired image feature
What is a morphological opening?
a shrink followed by an expand
What is the effect of convolution with a 3 x 3 mask with each coefficient set to 1/9?
it will blur edges
What is the effect of convolving an image with the mask $$\pmatrix{0 & 1 & 0\cr 1 & -4 & 1\cr 0 & 1 & 0\cr}$$
dark spots will be enhanced
How does the time taken to perform a convolution vary with the dimension of a (square) mask?
it is proportional to the square of the dimension of the mask
Why is it often better to use the median then the mean when performing a convolution?
it blurs the image less
What is a morphological grey-level expand?
taking the maximum when performing a convolution
For convolution of a single-channel 2D image with a 2D mask, how many nested loops are there in its implementation in software?
4
What is the effect of convolution with the following mask? $$\frac19 \pmatrix{1 & 1 & 1\cr 1 & 1 & 1\cr 1 & 1 & 1\cr}$$
it will blur edges