2025T2的Sample Example
Instructions:
- Time allowed: 10 minutes reading + 2 hours working.
- The exam will count for 50% of your final course mark.
- The exam consists of 50 multiple-choice questions each worth 1 mark.
- All questions may be attempted (no penalty marks for wrong answers).
- For each multiple-choice question you must select the one best answer.
- No materials may be taken into or out of the examination room.
- It is not allowed (and not possible) to consult any works or the internet.
- Do not log out until you have saved and submitted your answers.
Question1: Which one of the following statements about colour spaces is incorrect?
- A. The R, G, and B channels of the RGB colour space are often correlated.
- B. The H and the S channel of the HSV colour space are confounded.
- C. The Y channel of the YCbCr colour space represents the brightness.
- D. The a* channel of the L*a*b* colour space is the green-blue component.
Question2: Which one of the following statements about intensity transformations is incorrect?
- A. Contrast stretching linearly maps intensities between two values to the full output range.
- B. Log transformation maps a narrow range of high intensities to a wider range of output values.
- C. Power transformation can map intensities similar to log and inverse log transformations.
- D. Piecewise linear transformations can achieve contrast stretching and intensity slicing.
Question3: What is the effect of the following 2D convolution kernel on an image?

- A. It approximates the sum of first-order derivatives in 𝑥 and 𝑦.
- B. It approximates the sum of second-order derivatives in 𝑥 and 𝑦.
- C. It approximates the product of first-order derivatives in 𝑥 and 𝑦.
- D. It approximates the product of second-order derivatives in 𝑥 and 𝑦.
Question4: Which one of the following statements on image filtering is incorrect?
- A. Median filtering reduces noise in images.
- B. Low-pass filtering results in blurry images.
- C. High-pass filtering smooths fine details in images.
- D. Notch filtering removes specific image frequencies.
Question5: Which one of the following statements about feature descriptors is incorrect?
- A. Haralick features are derived from gray-level co-occurrence matrices.
- B. SIFT achieves rotation invariance by computing gradient histograms at multiple scales.
- C. LBP describes local image texture and can be multiresolution and rotation-invariant.
- D. Colour moments have lower representation capability than the colour histogram.
Question6: Given the image below showing the result of a segmentation of various objects and the desired classification of these objects. The two different colours (red and green) indicate the twodifferent classes which the objects are to be assigned to.
A straightforward way to perform classification is by computing the value of a quantitative shape measure for each object and then thresholding those values. Suppose we compute the circularity and the eccentricity. Which of these two measures can be used to produce the shown classification?

- A. Only circularity
- B. Only eccentricity
- C. Both circularity and eccentricity
- D. Neither circularity nor eccentricity
Questio7: Which one of the following statements is correct for random forest classifiers?
- A. Increasing the correlation between the individual trees decreases the random forest classification error rate.
- B. Reducing the number of selected features at each node increases the correlation between the
individual trees. - C. Reducing the number of selected features at each node increases the strength of the individual
trees. - D. Increasing the strength of the individual trees decreases the random forest classification error rate.
Question8: Which one of the following statements is correct for pattern recognition?
- A. Pattern recognition is defined as the process of model training on a training dataset and then testing on an independent test set.
- B. The dimension of feature vectors should be smaller than the number of training samples in order to avoid the overfitting problem.
- C. The simple kNN classifier needs homogeneous feature types and scales so that the classification performance can be better.
- D. SVM is a powerful classifier that can separate classes even when the feature space exhibits significant overlaps between classes.
Question9: Given the following binary image after segmentation.

To automatically identify the objects (in white) in this image we can use the connected components labelling algorithm. How many separate objects will this algorithm find here if it uses 4-connectivity?
- A. 4
- B. 5
- C. 6
- D. 7
Question10: Given a binary input image 𝐼 to which we apply the following algorithm:
Step 1: Create a copy 𝐶 of input image 𝐼.
Step 2: Copy the boundary pixels of 𝐶 into new image 𝐵.
Step 3: Compute the reconstruction 𝑅 of 𝐶 from 𝐵.
Step 4: Compute output 𝑂 by subtracting 𝑅 from 𝐼.
What does the output image 𝑂 contain?
- A. The same objects as the input image whatever the input.
- B. The same objects as the input image but with holes filled.
- C. The same objects as the input image except the boundary objects.
- D. The same objects as the input image but with touching objects separated.
Question11: Which one of the following lines describes the purpose of convolutional layers in CNNs?
- A. Reducing the size of the feature maps.
- B. Calculating the dot product of the input and kernels.
- C. Applying a nonlinear activation function.
- D. Making the network learn faster.
Question12: Which one of the following lines describes the purpose of transfer learning?
- A. Training a model from scratch for each new task.
- B. Using a pretrained model and fine-tuning it for a new task.
- C. Converting image data to text data to facilitate learning.
- D. Combining multiple models into a single model for better performance.
Question13: Which one of the following lines best describes the key benefit of CNNs over traditional ANNs for image classification?
- A. CNNs are computationally less expensive.
- B. CNNs automatically learn hierarchical features.
- C. CNNs require fewer network layers.
- D. CNNs can learn nonlinear mappings.
Question14: Which one of the following networks is most suited for image segmentation tasks?
- A. Multilayer perceptron (MLP)
- B. Fully convolutional network (FCN)
- C. Region proposal network (RPN)
- D. Recurrent neural network (RNN)
Question15: Which one of the following statements about motion analysis is incorrect?
- A. Detection of moving objects by subtraction of successive images in a video works best if the background is constant.
- B. Sparse motion estimation in a video can be done by template matching and minimising the mutual information measure.
- C. Dense motion estimation using optical flow assumes that each small neighbourhood remains constant over time.
- D. Optical flow provides an equation for each pixel but requires further constraints to solve the equation uniquely.
Question16: Which one of the following statements about object tracking is incorrect?
- A. The particle filtering method assumes that the dynamics model and the measurement model can be parameterized.
- B. The hidden Markov model assumes that the measurements depend only on the current state of the objects.
- C. The prediction step of Bayesian inference assumes that the current state of the objects depends only on the previous state.
- D. The Kalman filtering method assumes that the dynamics and measurement noise are additive Gaussian.
Question17: In many image processing operations, the image must be expanded a little bit to solve the boundary problem. Which one of the following types of expansion is implicitly used by the Fourier transform?
- A. Padding
- B. Clamping
- C. Wrapping
- D. Mirroring
Question18: Suppose we have the following grayscale input image 𝐼 (shown on the left) and we would like to have a binary output image 𝑂 (as shown on the right) containing the edges of the objects in the input. Also suppose that the only image processing operations available for this are intensity thresholding, dilation and erosion (binary and grayscale), and image subtraction. Which one of the following algorithms will not produce the desired output?

- A. Thresholding (result = 𝑇), then erosion (result = 𝐸), then subtraction (result = 𝐸 − 𝑇).
- B. Erosion (result = 𝐸), then subtraction (result = 𝐼 − 𝐸), then thresholding (result = 𝑇).
- C. Thresholding (result = 𝑇), then dilation (result = 𝐷), then subtraction (result = 𝐷 − 𝑇).
- D. Dilation (result = 𝐷), then subtraction (result = 𝐷 − 𝐼), then thresholding (result = 𝑇).
Question19: Given the image below containing about two dozen algae (the bright spots) which we would like to segment using an automatic thresholding method. Which one of the following automatic thresholding methods will give the best segmentation result here?

- A. Mean thresholding
- B. IsoData thresholding
- C. Otsu thresholding
- D. Triangle thresholding
Question20: Which one of the following statements about data augmentation for image classificationusing CNNs is correct?
- A. Augmentation increases the number of parameters in the model.
- B. Augmentation reduces the size of the dataset to speed up training.
- C. Augmentation generates new training data by transforming the existing data.
- D. Augmentation reduces the depth of the network for better performance.
Question21: Which one of the following statements about image segmentation methods is incorrect?
- A. Thresholding based on pixel intensity yields poor results if the regions to be segmented have overlapping intensity distributions.
- B. Level-set segmentation uses an object boundary representation that makes it hard to deal with topological changes.
- C. Region splitting techniques aim to optimize some metric of intra-region similarity and inter-region dissimilarity.
- D. Watershed segmentation often results in over-segmentation because image regions may contain multiple local minima.
Question22: Given the following 2D convolution kernel:

Which one of the following correctly describes the effect of this kernel when applied to an image?
- A. Smoothing in 𝑥 and first-order differentiation in 𝑦.
- B. Smoothing in 𝑥 and second-order differentiation in 𝑦.
- C. First-order differentiation in 𝑥 and smoothing in 𝑦.
- D. Second-order differentiation in 𝑥 and smoothing in 𝑦.
Question23: Which one of the following strategies will not help to reduce overfitting of neural networks?
- A. Applying dropout.
- B. Using early stopping.
- C. Augmenting the data.
- D. Increasing the number of network parameters.
发表回复
要发表评论,您必须先登录。