Harris Corner Detector
Harris corner detector 1) 개요 - Locate interest points where the surrounding neighborhood shows edges in more than one direction. 2) 방법 $$E(u, v) = \sum_{x, y}\: w(x, y)\: [I(x+u, y+v) - I(x,y)]^{2}$$ - shift the window function by (u, v) and compare each pixel before and after by SSD. - w(x, y) : window function -> gives weights to pixels. (e.g. rectangular, gaussian) - I(x+u, y+v) : shifted int..