-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
adding a NaN check for feature points #110
base: master
Are you sure you want to change the base?
Conversation
I can confirm that this works and is necessary to make VINS work with a Realsense T265 tracking camera. I had to remove the following assertion though:
|
That do works! But for me it requires additional inf check like this. if (!std::isinf(cur_un_pts[i].x) && !std::isinf(cur_un_pts[i].y) && !std::isnan(cur_un_pts[i].x) && !std::isnan(cur_un_pts[i].y))
|
which cpp file? |
At feature_tracker.cpp ,line 261 and line 283. Wrap this extra inf check inside these for loops. |
thank u,but this code can not slove my problem |
May I ask what platform you are running on? I am running on NX. |
On Inter NUC 11. |
thanks bro, How does vinsfusion work on the NUC platform? Is it stable? |
Friend, can you provide your source code, thanks a lot |
|
thanks a lot,bro |
Hello! I received this error after cloning the latest code. Is there any solution? |
Adding a nan check for feature points in feature tracker which is causing problems with fisheye lens cameras like the Intel Realsense T265. I have checked the working of the algorithm as it works fine now with the default calibration parameter provided by intel.