-
Notifications
You must be signed in to change notification settings - Fork 21
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
Test #8
Comments
The current implementation works with TUM data-sets using association files to read the images and poses. You can create the association files as described here. I have yet to evaluate with 7-Scenes as I've had issues successfully downloading any of the scenes. |
Thanks a lot! It works by changing the bool train = true in the main.cpp file :) $./relocforests_example /home/lili/BMVC/data/rgbd_dataset_freiburg3_long_office_household/ How long does your training procedure usually take? How many trees do you need for training? What's the accuracy and speed of your code? Thanks a lot! |
It seems that it has pretty large errors for testing the frame201: Ground truth: known pose rotation in Euler Angles: 125.145, -39.003, -158.158 found pose in euler angle: 151.68, -37.0323, 133.105 How is going with your result? :) Thanks:) |
It seems you got it running, sorry about that, there is a fix for the command line interface in the other branches. I'll have a fix in master soon. Training normally take ~2 minutes per tree, and I use 5 trees per forest. So overall train time take around 10-15 minutes, while evaluation takes about 3 seconds per frame. From the tests I have run the results are very close to the results from the paper. In the paper depending on the scene they were able to get accuracy from 39.2% to 95.5% (Successful frames being within 5cm translational and 5 degree angular error). I tested with the Frieburg Desk1 and Desk2 datasets and was able to get nominal accuracy. |
Thanks! Which branch did you get the results close to the results from the paper? It seems that you have three branches :) |
Each of the branches have the same underlying forest code. The visualization branch adds pose visualization, and pipeline_integration is work to make the code more generic for integration into scanning applications. |
Thanks! Does all the three branches have the same accuracy? As it seems that for the frame201 (the 201th frame in the ground truth file of freiburg3_long_office_household, and number 200 in your code), it has very large errors both on rotation and translation. Is it normal? known pose rotation in Euler Angles: 125.145, -39.003, -158.158 found pose in euler angle: 151.68, -37.0323, 133.105 |
Yeah, that's normal. Frame 201 was tracked well in the Freiburg Desk1 dataset. To test the accuracy of the specific data set you are using you could iterate through all the frames and calculate the error per frame, then calculate the same percentages of tracked frames from the paper. |
Is that because the freiburg3_long_office_household has larger scene environment? As the paper's dataset is only tested on small dataset. But the freiburg3_long_office_household has larger environment scale, so it perform badly? Freiburg desk1 and desk2 have relatively small scenes which are similar to the dataset of the paper. |
For fr1_desk, the frame201, it got pretty small errors. Train time: 9.30508 Seconds 33.2491 |
Hi,
The text was updated successfully, but these errors were encountered: