Harris corner detector

Creator
Creator
Seonglae ChoSeonglae Cho
Created
Created
2023 Mar 23 4:56
Editor
Edited
Edited
2023 Jun 6 15:2

Using that significant change exists to all direction in Derivative Filter at the corner

It shows orientation and magnitude
  • Harris corner response is invariant to rotation (
    Eigenvalue
    is same)
  • Harris corner detector is not invariant to scale
The surface is locally approximated by a quadratic form
Second Moment Matrix

Error Function

for each point

 
  1. pick small region
    Window Function
    or
    Gaussian Filter
  1. compute derivatives
  1. compute products of derivatives at every pixel
  1. compute the sums of products of derivatives at each pixel and subtract it
    DC bias
  1. Compute the covariance matrix (M 모양)
  1. Compute
    Eigenvector
    and eigenvalues
    1. notion image
  1. Use threshold on a function of eigenvalues to detect corners
    1. notion image
      notion image
notion image
 
notion image
 
 

Pros

  • Corner response R is invariant to image rotation
  • R is Partial invariance to affine intensity change (shift and intensity scale)
 

Limitation

  • 색변화만 감지한다
  • not invariant to scale so we need multi-scale detection (can’t auto select)
  • 주변만 고려한다
 
 
 

Recommendations