junxnone / aiwiki

AI Wiki
https://junxnone.github.io/aiwiki
18 stars 2 forks source link

CV Feature Harris #67

Open junxnone opened 4 years ago

junxnone commented 4 years ago

Harris Corner

Reference

Brief

检测原理

image


公式推导

响应公式 image
窗口函数 image
窗口图解 image image
通过 泰勒展开式 简化 为 u,v 相关的函数 image image image
image image
image image
image
image
image image

Pipelines

  1. Compute Gaussian derivatives at each pixel
  2. Compute second moment matrix M in a Gaussian window around each pixel
  3. Compute corner response function R
  4. Threshold R
  5. Find local maxima of response function(NMS)

扩展

Shi-Tomasi

image -- | image


Harris vs Shi-Tomasi 1_wvTlz05svCeCPu3MvJgeBQ

Subpixel Corners

junxnone commented 4 years ago

junxnone/aiwiki#64