浏览代码

Affine warp: reduce the number of hypotheses

customisations
alemart 9 个月前
父节点
当前提交
528548d13d
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      src/trackers/image-tracker/states/tracking.ts

+ 1
- 1
src/trackers/image-tracker/states/tracking.ts 查看文件

459
         return ImageTrackerUtils.findAffineWarpNDC(points, {
459
         return ImageTrackerUtils.findAffineWarpNDC(points, {
460
             method: 'pransac',
460
             method: 'pransac',
461
             reprojectionError: TRACK_RANSAC_REPROJECTIONERROR_NDC,
461
             reprojectionError: TRACK_RANSAC_REPROJECTIONERROR_NDC,
462
-            numberOfHypotheses: 512*4,
462
+            numberOfHypotheses: 512*2,
463
             bundleSize: 128,
463
             bundleSize: 128,
464
             mask: undefined // score is not needed
464
             mask: undefined // score is not needed
465
         }).then(([ warp, score ]) => {
465
         }).then(([ warp, score ]) => {

正在加载...
取消
保存