Sheet Harris Corner Detection
Consider the following image:
Compute the Harris matrix
for the 3 by 3 highlighted window. In the above formula Ix = dI/dx, Iy = dI/dy, and
W is the window highlighted in the image.
A) First, compute the derivatives using the differentiation kernels shown
above.
B) Now compute the Harris Matrix based on the derivative matrices.
C) Compute the Harris cornerness score R = det(H) − k trace(H)2 for k = 0.04.
What do we have here? A corner? An edge? Or a flat area? Why?