首页 相关文章 实现Lucas-Kanade光流计算的Delphi类

实现Lucas-Kanade光流计算的Delphi类

  {
  作者:刘留
  参考文献为:
  Jean-Yves Bouguet "Pyramidal Implementation of the Lucas Kanade Feature Tracker Description of the algorithm"
  http://www.aivisoft.net/
  Geo.Cra[at]gmail[dot]com
  }
  unit OpticalFlowLK;

  interface

  uses
   Math, Windows, SysUtils, Variants, Classes, Graphics, unitypes, ColorConv;

  type

   TOpticalFlowLK = class
   private
   ImageOld, ImageNew: TTripleLongintArray;
   ImageGray, dx, dy, dxy: TDoubleLongintArray;
   Eigenvalues: TDoubleExtend...[ 查看全文 ]

2016-02-19 标签:

实现Lucas-Kanade光流计算的Delphi类的相关文章

手机页面
收藏网站 回到头部