{
作者:刘留
参考文献为:
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...[ 查看全文 ]