You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
points in pts0_new (new keypoints in left camera) might be unexpectedly rejected because of out-of-bound points in pts1_new (keypoints in right camera)
#332
I suppose we always want to add those detected new points pts0_new to pts0 if they're in the bound, despite their matching result to the right image.
However this piece of code might reject some in-bound points in pts0_new because of others faults, i.e. out-of-bound ponits in pts1_new.
The text was updated successfully, but these errors were encountered:
Here is the relevant code:
open_vins/ov_core/src/track/TrackKLT.cpp
Line 682 in db026f3
I suppose we always want to add those detected new points
pts0_new
topts0
if they're in the bound, despite their matching result to the right image.However this piece of code might reject some in-bound points in
pts0_new
because of others faults, i.e. out-of-bound ponits inpts1_new
.The text was updated successfully, but these errors were encountered: