LoFTR icon indicating copy to clipboard operation
LoFTR copied to clipboard

A potential bug in RANSAC threshold estimation

Open AtsushiHashimoto opened this issue 2 years ago • 0 comments

Hi. Thank you for your great work.

By the way, the following line may be a tiny bug that only affect thresholds for the RANSAC algorithm.

ransac_thr = thresh / np.mean([K0[0, 0], K1[1, 1], K0[0, 0], K1[1, 1]])

I thought it should be

ransac_thr = thresh / np.mean([K0[0, 0], K0[1, 1], K1[0, 0], K1[1, 1]])

It helps me a lot if @ZJUCVG could check this point.

AtsushiHashimoto avatar Mar 30 '22 02:03 AtsushiHashimoto