2016-02-16 55 views

回答

1

在Lucas Kanade算法中,流向量通過搜索下一幅圖像中前一幅圖像的特定點來估計。如果您使用的是opencv,則表示功能calcOpticalFlowPyrLK。其中給出了目標圖像中跟蹤點的座標。您可以檢查here

當前圖像中的點和前一圖像中的相應點存在估計Homography矩陣的可用函數。 here

findHomography(srcPoints, dstPoints, method, ransacReprojThreshold); 
0

使用estimateGeometricTransform功能在計算機視覺系統工具箱。

相關問題