角點檢測運算元的代碼描述

來源:互聯網
上載者:User

最簡單的一種角點檢測運算元,但是由於採用了非最大化抑制,效果和OpenCV相當。

  TPointInfo = record
    Info: TPoint;
    w: extended;
    Color: TLabColor;
  end;

  TSinglePointInfoArray = array of TPointInfo;

procedure CornerDetect(Width, Height: longint);
var
  i, j, fi, fj, sum: longint;
begin
  PointCount := 0;
  for i := 7 to Width - 8 do
    for j := 7 to Height - 8 do begin
      sum := 0;
      for fi := i - 7 to i + 7 do
        for fj := j - 7 to j + 7 do
          sum := sum + abs(ImageGray[i, j] - ImageGray[fi, fj]);
      ImagePoint[i, j] := sum div $100;
    end;
  {標準角點檢測運算元部分}
  for i := 7 to Width - 8 do
    for j := 7 to Height - 8 do begin
      sum := ImagePoint[i, j];
      if sum > $20 then begin
        WBPoint[i, j] := true;
        Inc(PointCount);
        for fi := i - 7 to i + 7 do begin
          for fj := j - 7 to j + 7 do
            if ImagePoint[fi, fj] > sum then begin
              WBPoint[i, j] := false;
              Dec(PointCount);
              break;
            end;
          if not WBPoint[i, j] then break;
        end;
      end else
        WBPoint[i, j] := false;
    end;
  {用非最大化抑制來抑制假角點}
  setlength(CornerPoint, PointCount); fi := 0;
  for i := 7 to Width - 8 do
    for j := 7 to Height - 8 do
      if WBPoint[i, j] then begin
        CornerPoint[fi].Info.X := i;
        CornerPoint[fi].Info.Y := j;
        Inc(fi);
      end;
  {輸出為一個點序列}
end;

輸入的ImageGray為映像的灰階描述,WBPoint為Boolean數組,ImagePoint為標準角點檢測運算元運行後的檢測值。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.