-
Notifications
You must be signed in to change notification settings - Fork 94
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
How can I get reference results without gt? #5
Comments
Hi Wei Hu, Thank you so much for testing our code. Your issue just scares the hell out of me... I can reproduce your problem and it is because previously we use the 2x numbers of the ground truth junctions as the number of candidate junctions. This should not be used in the evaluation mode and it is fixed now in the master by changing the number of candidate junctions to a hardcoded constant during testing. I don't think this change will affect the PR curve and other metrics much since it only increases the number of candidates lines rather than changing their score/ranking. But I will rerun the evaluation code and include a script for the ease of testing on a new image without the hassle of data processing, hopefully in this weekend. Again thank you for finding the problem. Best, |
I will update the thresholding scheme as the current one is arbitrary. (it should be thresholded by the confidence rather than a const count). The visualization threshold might also be affected according to your figures. |
I implemented the new thresholding strategy. The performance metric in 4c74116 (using N_gt * 2 junctions) is:
and the performance metric now (thresholding on the junction map) is
I will consider this as fixed. |
I download the wireframe dataset,and run
dataset/wireframe.py
process.py
post.py
by order , and get the result.
I want to test some image without gt , so I modified some code in dataset/wireframe.py , but result is very strange.
Here is the code I modified
And here is the visual result with modified code.
Here is the visual result with source code
Seems like the gt will influence test result, how can I remove the gt influence in reference, and how can I test some image without gt?
The text was updated successfully, but these errors were encountered: