Harris corner detector

From testwiki
Revision as of 13:00, 28 February 2025 by imported>CelestialLime (Introduction: Grammar edit)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Template:Short description The Harris corner detector is a corner detection operator that is commonly used in computer vision algorithms to extract corners and infer features of an image. It was first introduced by Chris Harris and Mike Stephens in 1988 upon the improvement of Moravec's corner detector.[1] Compared to its predecessor, Harris' corner detector takes the differential of the corner score into account with reference to direction directly, instead of using shifting patches for every 45 degree angles, and has been proved to be more accurate in distinguishing between edges and corners.[2] Since then, it has been improved and adopted in many algorithms to preprocess images for subsequent applications.

Introduction

A corner is a point whose local neighborhood stands in two dominant and different edge directions. In other words, a corner can be interpreted as the junction of two edges, where an edge is a sudden change in image brightness.[3] Corners are the important features in the image, and they are generally termed as interest points which are invariant to translation, rotation and illumination. Although corners are only a small percentage of the image, they contain the most important features in restoring image information, and they can be used to minimize the amount of processed data for motion tracking, image stitching, building 2D mosaics, stereo vision, image representation and other related computer vision areas.

In order to capture the corners from the image, researchers have proposed many different corner detectors including the Kanade-Lucas-Tomasi (KLT) operator and the Harris operator which are most simple, efficient and reliable for use in corner detection. These two popular methodologies are both closely associated with and based on the local structure matrix. Compared to the Kanade-Lucas-Tomasi corner detector, the Harris corner detector provides good repeatability under changing illumination and rotation, and therefore, it is more often used in stereo matching and image database retrieval. Although there still exist drawbacks and limitations, the Harris corner detector is still an important and fundamental technique for many computer vision applications.

Development of Harris corner detection algorithm [1]

Without loss of generality, we will assume a grayscale 2-dimensional image is used. Let this image be given by I. Consider taking an image patch (x,y)W(window) and shifting it by (Δx,Δy). The sum of squared differences (SSD) between these two patches, denoted f, is given by:

f(Δx,Δy)=(xk,yk)W(I(xk,yk)I(xk+Δx,yk+Δy))2

I(x+Δx,y+Δy) can be approximated by a Taylor expansion. Let Ix and Iy be the partial derivatives of I, such that

I(x+Δx,y+Δy)I(x,y)+Ix(x,y)Δx+Iy(x,y)Δy

This produces the approximation

f(Δx,Δy)(x,y)W(Ix(x,y)Δx+Iy(x,y)Δy)2,

which can be written in matrix form:

f(Δx,Δy)(ΔxΔy)M(ΔxΔy),

where M is the structure tensor,

M=(x,y)W[Ix2IxIyIxIyIy2]=[(x,y)WIx2(x,y)WIxIy(x,y)WIxIy(x,y)WIy2]

Process of Harris corner detection algorithm[4][5][6]

Commonly, Harris corner detector algorithm can be divided into five steps.

  1. Color to grayscale
  2. Spatial derivative calculation
  3. Structure tensor setup
  4. Harris response calculation
  5. Non-maximum suppression

Color to grayscale

If we use Harris corner detector in a color image, the first step is to convert it into a grayscale image, which will enhance the processing speed.

The value of the gray scale pixel can be computed as a weighted sums of the values R, B and G of the color image,

C{R,G,B}wCC,

where, e.g.,

wR=0.299, wG=0.587, wB=1(wR+wG)=0.114.

Spatial derivative calculation

Next, we are going to find the derivative with respect to x and the derivative with respect to y, Ix(x,y) and Iy(x,y). This can be approximated by applying Sobel operators.

Structure tensor setup

With Ix(x,y) , Iy(x,y), we can construct the structure tensor M.

Harris response calculation

For xy, one has xyx+y=x11+x/yx. In this step, we compute the smallest eigenvalue of the structure tensor using that approximation:

λminλ1λ2(λ1+λ2)=det(M)tr(M)

with the trace tr(M)=m11+m22.

Another commonly used Harris response calculation is shown as below,

R=λ1λ2k(λ1+λ2)2=det(M)ktr(M)2

where k is an empirically determined constant; k[0.04,0.06] .

Non-maximum suppression

In order to pick up the optimal values to indicate corners, we find the local maxima as corners within the window which is a 3 by 3 filter.

Improvement[7][8]

  1. Harris-Laplace Corner Detector[9]
  2. Differential Morphological Decomposition Based Corner Detector[10]
  3. Multi-scale Bilateral Structure Tensor Based Corner Detector[11]

Applications

  1. Image Alignment, Stitching and Registration[12]
  2. 2D Mosaics Creation[13]
  3. 3D Scene Modeling and Reconstruction[14]
  4. Motion Detection[15]
  5. Object Recognition[16]
  6. Image Indexing and Content-based Retrieval[17]
  7. Video Tracking[18]

See also

References

Template:Reflist

  1. 1.0 1.1 Cite error: Invalid <ref> tag; no text was provided for refs named harris
  2. Cite error: Invalid <ref> tag; no text was provided for refs named dey
  3. Cite error: Invalid <ref> tag; no text was provided for refs named derpanis
  4. Template:Cite web
  5. Template:Cite web
  6. Cite error: Invalid <ref> tag; no text was provided for refs named sanchez
  7. Template:Cite journal
  8. Template:Cite book
  9. Template:Cite web
  10. Template:Cite journal
  11. Template:Cite web
  12. Template:Cite book
  13. Template:Cite web
  14. Template:Cite web
  15. Template:Cite book
  16. Template:Cite web
  17. Template:Cite web
  18. Template:Cite web