What is a morphological grey-level shrink?
A morophological shrink involves taking the minimum when performing a convolution. It has the effect of reducing the size of light-coloured regions on a dark background.
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 enhance edges
it will blur edges
- it has no effect
- it will detect isolated points
Averaging over a region will tend to blur an image.
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?
This produces a large output when the value below the middle of the mask is much lower than the pixels on its four sides -- and this will tend to enhance dark spots in an image.
What is the effect of convolution with a 3 x 3 mask with each coefficient set to 1/9?
- it will enhance edges
it will blur edges
- it will detect isolated points
- it has no effect
Averaging over a region will tend to blur an image.
What is a morphological grey-level expand?
A morophological shrink involves taking the maximum when performing a convolution. It has the effect of increasing the size of light-coloured regions on a dark background.
Why is it often better to use the median then the mean when performing a convolution?
- it is easier to write the software
- it is more accurate
- it is faster to calculate
it blurs the image less
When one value lies well away from the others, the median is less affected then the mean, so it tends to blur the image less.
For convolution of a single-channel 2D image with a 2D mask, how many nested loops are there in its implementation in software?
In order, there are normally loops over the rows and columns of the image. Within those, there are loops over the rows and columns of the mask.
What is a morphological opening?
An opening is a shrink followed by an expand, at least as defined in the lecture notes -- some authors would call this an expand! I'm afraid you'll just have to remember this!
The Laplacean mask is useful for:
The Laplacean is best at identifying isolated pixels in images.
What is the effect of convolving an image with a +-shaped mask?
This produces a large output when the value below the middle of the mask lines at the centre of a light +-shaped feature.