10

我正在實施哈里斯角落探測器的教育目的,但我卡在哈里斯響應部分。基本上,我在做什麼,是:實施哈里斯角落探測器

  1. 計算在x方向和y方向的圖像強度梯度
  2. (1)以上的(2)
  3. 輸出
  4. 計算哈里斯響應的
  5. 模糊輸出在3x3鄰域中抑制(3)的輸出中的非極大值,並且閾值輸出

1和2似乎工作正常;然而,作爲哈里斯響應,我得到的值非常小,沒有一點達到閾值。輸入是標準的戶外攝影。

[...] 
[Ix, Iy] = intensityGradients(img); 
g = fspecial('gaussian'); 
Ix = imfilter(Ix, g); 
Iy = imfilter(Iy, g); 
H = harrisResponse(Ix, Iy); 
[...] 

function K = harrisResponse(Ix, Iy) 
    max = 0; 
    [sy, sx] = size(Ix); 
    K = zeros(sy, sx); 
    for i = 1:sx, 
     for j = 1:sy, 
      H = [Ix(j,i) * Ix(j,i), Ix(j,i) * Iy(j,i) 
       Ix(j,i) * Iy(j,i), Iy(j,i) * Iy(j,i)]; 
      K(j,i) = det(H)/trace(H); 
      if K(j,i) > max, 
       max = K(j,i); 
      end 
     end 
    end 
    max 
end 

對於樣品圖片,最大結束是6.4163e-018這似乎太低了。

回答

7

Harris角點檢測中的一個角被定義爲「區域中最高值的像素」(通常爲3X35x5),所以您關於沒有達到「閾值」的點的評論對我來說似乎很陌生。只需要收集比周圍鄰居5x5附近的所有像素值都高的像素。

除此之外: 我不是100%肯定,但我想你應該有:

K(j,i) = det(H) - lambda*(trace(H)^2) 哪裏拉姆達的是,在你的情況下,工作的積極的常數(哈里斯建議值是0.04)。

一般來說唯一明智的時刻來過濾輸入了這一點之前:

[Ix, Iy] = intensityGradients(img);

過濾Ix2Iy2Ixy沒有多大意義了我。

而且,我覺得你的代碼示例是這裏錯了(不函數harrisResponse有兩個或三個輸入變量):

H = harrisResponse(Ix2, Ixy, Iy2); 
[...] 

function K = harrisResponse(Ix, Iy) 
+0

我已經恢復到不再過濾Ix2等,因此在stackoverflow的副本中留下了一些錯誤。 – Etan 2010-10-05 12:50:44

+0

問題是我沒有總結3x3方塊中的所有像素來找出Ix2等;相反,我剛剛使用了相應的像素。在改變H之後,它總結了所有9個像素的所有Ix2,Ixy和Iy2,看起來非常好。 – Etan 2010-10-05 12:52:16

+1

det(H)/ trace(H)是一種在沒有lambda的情況下使用的近似值。 – Etan 2010-10-05 12:52:41

3

建議的實施是非常低效的。 讓我們計算梯度(其可以也被優化)之後開始:

A = Ix.^2; 
B = Iy.^2; 
C = (Ix.*Iy).^4; 
lambda = 0.04; 

H = (A.*B - C) - lambda*(A+B).^2; 

% if you really need max: 
max(H(:)) 

不需要循環,因爲Matlab的討厭環路。

+2

但是爲什麼要計算'C =(Ix。* Iy)。^ 4'而不是簡單的'C =(Ix。* Iy)'? – 2015-03-31 09:37:22

0

在計算機視覺系統工具箱中有一個稱爲detectHarrisFeatures的功能。

3

基本上,Harris角點檢測將有5個步驟:

  1. 梯度計算
  2. 高斯平滑
  3. 哈里斯量度計算
  4. 非最大抑制
  5. 閾值

如果你正在執行MATLAB,將會很容易理解算法並獲得結果。

MATLAB的下面的代碼可以幫助你解決你的疑惑:

% Step 1: Compute derivatives of image 
Ix = conv2(im, dx, 'same'); 
Iy = conv2(im, dy, 'same'); 

% Step 2: Smooth space image derivatives (gaussian filtering) 
Ix2 = conv2(Ix .^ 2, g, 'same'); 
Iy2 = conv2(Iy .^ 2, g, 'same'); 
Ixy = conv2(Ix .* Iy, g, 'same'); 

% Step 3: Harris corner measure 
harris = (Ix2 .* Iy2 - Ixy .^ 2) ./ (Ix2 + Iy2); 

% Step 4: Find local maxima (non maximum suppression) 
mx = ordfilt2(harris, size .^ 2, ones(size)); 

% Step 5: Thresholding 
harris = (harris == mx) & (harris > threshold); 
1

,我與Python實現的解決方案,它爲我工作,我希望你找到你在找什麼

import numpy as np 
import matplotlib.pyplot as plt 
from PIL.Image import * 
from scipy import ndimage 

def imap1(im): 
    print('testing the picture . . .') 
    a = Image.getpixel(im, (0, 0)) 
    if type(a) == int: 
     return im 
    else: 
     c, l = im.size 
     imarr = np.asarray(im) 
     neim = np.zeros((l, c)) 
     for i in range(l): 
      for j in range(c): 
       t = imarr[i, j] 
       ts = sum(t)/len(t) 
       neim[i, j] = ts 
     return neim 

def Harris(im): 
    neim = imap1(im) 
    imarr = np.asarray(neim, dtype=np.float64) 
    ix = ndimage.sobel(imarr, 0) 
    iy = ndimage.sobel(imarr, 1) 
    ix2 = ix * ix 
    iy2 = iy * iy 
    ixy = ix * iy 
    ix2 = ndimage.gaussian_filter(ix2, sigma=2) 
    iy2 = ndimage.gaussian_filter(iy2, sigma=2) 
    ixy = ndimage.gaussian_filter(ixy, sigma=2) 
    c, l = imarr.shape 
    result = np.zeros((c, l)) 
    r = np.zeros((c, l)) 
    rmax = 0 
    for i in range(c): 
     print('loking for corner . . .') 
     for j in range(l): 
      print('test ',j) 
      m = np.array([[ix2[i, j], ixy[i, j]], [ixy[i, j], iy2[i, j]]], dtype=np.float64) 
      r[i, j] = np.linalg.det(m) - 0.04 * (np.power(np.trace(m), 2)) 
      if r[i, j] > rmax: 
       rmax = r[i, j] 
    for i in range(c - 1): 
     print(". .") 
     for j in range(l - 1): 
      print('loking') 
      if r[i, j] > 0.01 * rmax and r[i, j] > r[i-1, j-1] and r[i, j] > r[i-1, j+1]\ 
            and r[i, j] > r[i+1, j-1] and r[i, j] > r[i+1, j+1]: 
       result[i, j] = 1 

    pc, pr = np.where(result == 1) 
    plt.plot(pr, pc, 'r+') 
    plt.savefig('harris_test.png') 
    plt.imshow(im, 'gray') 
    plt.show() 
    # plt.imsave('harris_test.png', im, 'gray') 

im = open('chess.png') 
Harris(im)