-
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 image #11
Comments
Yes that is correct, you are testing with a training image. That is a holdover from early development and should be resolved in the latest commits to master. I have added clarification for the example applications interface and fixed issues with the command line interface. There is now a better distinction between train and test time. Let me know if these changes make it more clear. Test time statistics is still something I have to do. |
Thanks a lot! Have you tested the 7 scenes dataset? I cannot get the 31% accuracy for Chess before the pose refinement mentioned in the 4.4 Main Results part of the paper either from your code and my code. Thanks again! |
I haven't tested with any of the 7 scenes data sets. What kind of accuracy are you getting? |
Currently almost no data could be within 5 degree rotation and 5cm translation. I'll let you know the final result as soon as I complete all the test:) |
Thanks a lot! That may make sense! |
Hi,
Thanks a lot for the code and your helpful answer!
Is the test image used for training in your code? It seems that one image ( Eigen::Affine3d pose = forest->Test(data->GetRGBImage(200), data->GetDepthImage(200)); )from all the data was used for testing, while all the data was used for training (forest = new Forest(data, settings);) the regression forest. Therefore, the result ( "found pose:" ) is training result.
The text was updated successfully, but these errors were encountered: