-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
Update to OpenCV4 and fix some build errors #790
base: master
Are you sure you want to change the base?
Conversation
IWYU (include what you use) is a tool that automatically determines which #include statements should be in a source file, to avoid strange transitive include dependencies that might be fragile
The Tracking class writes entries for each frame in mlRelativeFramePoses, mlpReferences, mlFrameTimes and mlbLost; these values belong together logically, so they have been fused into a struct TrackedFrame and a single list tracked_frames.
Hi. I still have strange problem using OpenCV4. I receive these messages: [ 62%] Built target ORB_SLAM2 |
you are missing libraries at the linking step. |
Thank you, I really appreciate your help. |
Thank you, this works awesomely! |
use this work , I find the tracking time are increasing and the tracking precision is downing ,. |
@zhuangxiaopi how did you measure the performance? Was it running on your camera or another rosbag ? |
I run the dataset "fr3_walking_rpy",the media tracking time is 0.1s .
I didn’t use the evaluation tool because the trajectory drift is visible to the naked eye.
Thx .
At 2020-09-25 22:46:55, "Do Anh Tu" <notifications@github.com> wrote:
@zhuangxiaopi how did you measure the performance? Was it running on your camera or another rosbag ?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
Are you using GCC? I'm using clang and had to change this to |
Thank you for this pull request. Works perfectly fine on Ubuntu 20.04 (uname -a: "Linux akp-VirtualBox 5.8.0-59-generic #66~20.04.1-Ubuntu SMP Thu Jun 17 11:14:10 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux"). Why is this not yet merged in master? |
Glad it worked for you. Because this repo seems unmaintained, the maintainer was last seen 2017 :( |
Yeah I understand that ORB-SLAM3 is superior now and everyone should upgrade. However, many implementations still use ORB-SLAM2, so this is really a pity. Thank YOU for being active and responding quickly, though. Great work :) |
Mostly changes or adds
#include
-statements to account for moved files or missingunistd.h
.