The document describes the Harris corner detector, which is used to detect interest points or corners in digital images. It works by calculating the autocorrelation matrix of an image window to determine if the window contains a corner. The autocorrelation matrix captures the gradient of the image in both the x and y directions. Corners are identified as points where both eigenvalues of the autocorrelation matrix are large, indicating a high variation in gradient in both directions. The Harris corner detector was an improvement over previous corner detectors as it considers gradient variations in all directions within a window. Examples show the Harris detector being applied to medical images to extract interest points for image registration.