YabinXuTUD / HRBFFusion3D

HRBF-Fusion: Accurate 3D Reconstruction from RGB-D Data Using On-the-Fly Implicits

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

sample parameterFileCvFormat missing

tarquai opened this issue · comments

you have provided a GlobalStateParam.txt for the freiburg1_desk data set.
However, I can't get it to work without a parameterFileCvFormat file and an associations.txt file.

can you add them also?
(anything else needed to run the default data_set?)

Thank you.

Have you built HRBFFusion3D successfully?

yes I have.
-I downloaded and compiled ElasticFusion first (with an old version of Pangolin btw)

When I built the Core, it seems that the library of ORBSLAM2 is needed. Then I built ORBSLAM2, the cmake_modules of ORB_SLAM2_m also had Findhrbffusion.cmake. I have no idea how to build this project. Ban you tell me how do you solve this problem? Thank you very much!

drop hrbffusion from target_link_libraries in cmakelists of orbslam2_m

I'll give it a try, Thank you very much!

I'm sorry to bother you again. Should I build OPEN3D before building ORBSLAM2_m?

I don't recall exactly.
I tried to compile and did what the compiler complained about

commented

you have provided a GlobalStateParam.txt for the freiburg1_desk data set. However, I can't get it to work without a parameterFileCvFormat file and an associations.txt file.

can you add them also? (anything else needed to run the default data_set?)

Thank you.

I'm not one of the authors but I had the same issues. You can generate the associations.txt file yourself with the tool here:
https://vision.in.tum.de/data/datasets/rgbd-dataset/tools
I'll link you the file I generated for the freiburg_desk1 dataset: associations.txt

Regarding the parameterFileCvFormat, it looks like they use the example provided by ORB_SLAM: https://github.com/raulmur/ORB_SLAM2/blob/master/Examples/RGB-D/TUM1.yaml

Apart from that, you also need the optimizationVocabularyFile (change the file location in GlobalStateParam.txt). You can also find it in the ORB_SLAM repo: https://github.com/raulmur/ORB_SLAM2/tree/master/Vocabulary

Thanks!