Skip to content
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

Thans for your excellent work, a few questions about the dataset and evaluation #3

Open
TongxingJin opened this issue Oct 27, 2024 · 4 comments

Comments

@TongxingJin
Copy link

  1. Do you have any plan to open-source the dataset in KAIST? Especially the 5 floors building shown in Figure 6;
  2. How do you get the ground truth trajectory?
@dhchung
Copy link
Owner

dhchung commented Oct 27, 2024

  1. It's hard to say. I want to upload it, but the dataset is too large (~ 200GB). I am currently finding some options to upload it.
  2. I didn't. The trajectory is the result of NV-LIOM. You can see from the paper that it is just evaluated qualitatively.

@TongxingJin
Copy link
Author

Thanks for your reply. Ok, waiting for your data. I think the staircase part shown in Figure 6 is decisive and enough for a simple test.

@TongxingJin
Copy link
Author

For the loop closure part, you tried to project points from the candidate frame, as well as their normals, into current frame, and after dealing with visibility problem you compare the normal difference of the same pixel, right? And what do different colors mean in normal images?

@dhchung
Copy link
Owner

dhchung commented Oct 27, 2024

Thanks for your reply. Ok, waiting for your data. I think the staircase part shown in Figure 6 is decisive and enough for a simple test.

Ah yes! For the staircase dataset, I am planning to upload it.

For the loop closure part, you tried to project points from the candidate frame, as well as their normals, into current frame, and after dealing with visibility problem you compare the normal difference of the same pixel, right? And what do different colors mean in normal images?

Yes you are correct about the loop closure!

I forgot to turn off the imshow() in the code.. 😢 These images were just shown for me to debug the algorithm.
I converted the normal vectors into rgb in the images:
r = int((keyj.totalPoints->points[i].normal_x0.5+0.5) * 255);
g = int((keyj.totalPoints->points[i].normal_y
0.5+0.5) * 255);
b = int((keyj.totalPoints->points[i].normal_z*0.5+0.5) * 255);
to see how the normal vectors are distributed in that scene.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants