open_vins icon indicating copy to clipboard operation
open_vins copied to clipboard

mask bug in TrackKLT.cpp

Open biggiantpigeon opened this issue 1 year ago • 2 comments

in 721 line of TrackKLT.cpp, why mask1_updated clone from mask0? I assume it should be mask1? cv::Mat mask1_updated = mask0.clone();

biggiantpigeon avatar Nov 01 '23 02:11 biggiantpigeon

I think you are right

WZG3661 avatar Nov 06 '23 12:11 WZG3661

Also, I found that in KLT, the first observation (on the frame which a feature is first detected) is not added to the database, the first time a KLT feature add to database is the next frame, when it is first tracked from old to new. This is not a bug, but I wonder will the performance be better if we add the feature's first observation.

biggiantpigeon avatar Nov 17 '23 09:11 biggiantpigeon