Skip to course content
Free computer vision course

Computer Vision and Multimodal AI

Module 03 Knowledge Check

5 questions. Pass mark 4 out of 5. Answer every question before checking the answer key below, then retry after reading the feedback.

1. Increasing a Gaussian blur kernel…

2. Sharpening an image amplifies…

3. An image with a strong lighting gradient needs…

4. The correct morphology order for removing specks and filling holes is…

5. A pipeline tuned on bright images and deployed on dim ones…

---

Answer Key and Explanations

Check these only after attempting every question.

1. B - removes noise and edge detail together

Both noise and edge detail are small fast changes, and a low-pass filter cannot distinguish them.

2. B - edges and noise equally

To the filter both are the same phenomenon: a pixel differing from its neighbours.

3. B - adaptive thresholding

No single global value works when the background at one end is brighter than the object at the other.

4. B - open then close

Closing first grows the specks into blobs that opening can no longer remove.

5. B - fails silently - the object is simply not detected

Every hard-coded constant is a hidden assumption about lighting that only different images expose.

Practical Check

Apply this module to your own work: complete the module activity for *Basic Image Processing with OpenCV*, then write one sentence naming what your result shows and one naming what it does not.

Strong Answer Pattern

A strong answer names the task, the evidence used, the check performed, and the remaining limitation. It avoids "proved", "guaranteed", or "always" unless the evidence genuinely supports it.