paroj / pose_calib

Efficient Pose Selection for Interactive Camera Calibration

Home Page:https://www.calibdb.net/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Detection of target overlap with the guided pose is not always successful

Acwok opened this issue · comments

commented

The function pose_close_to_tgt() struggles sometimes, see: https://youtu.be/xFR-GWuf3MQ.
It generally happens when the board has a big angle like in the video.

The value displayed in the terminal correspond to the jaccard variable here:

jaccard = Aab / (Aa + Ab - Aab)

the issue apparent in your video is inaccurate bootstrapping, i.e. the projected board is smaller than in the video. You can see it faintly in the grey area of the jaccard window.
See Section 3.4 of the paper for details on bootstrapping.

commented

You can see it faintly in the grey area of the jaccard window.

Indeed, I can see it now, through the grey area.
If I understand correctly, the first single frame calibration wasn't great.
If I make correspond the white and grey areas in the jaccard window, the calibration can continue and outputs good results though.