Search⌘ K
AI Features

Exercise: Detect Corners

Explore how to detect corners in microcontroller images by creating corner templates, applying blurring techniques, and performing template matching in Python. This lesson helps you develop hands-on skills to locate and annotate corners using OpenCV functions within a Jupyter Notebook environment, reinforcing practical feature detection techniques.

Problem statement

It’s time to put your programming skills to work. Your task is to locate the corners of the microcontrollers in six images like this one:

A microcontroller that you need to locate by finding its corners
A microcontroller that you need to locate by finding its corners

Launch the Jupyter Notebook below and follow the instructions.

Instructions:

  • The comment lines starting with # >>> indicate that you must edit the cell.

  • Replace the None values with the appropriate function calls.

The main steps that ...