-
Notifications
You must be signed in to change notification settings - Fork 62
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
Chairs with different orientations have same basis Scene_00000 #10
Comments
We uploaded the fixed annotations. If you have any other questions, feel free to re-open this issue. Best, |
Hi, |
I will check this issue in the next week. I think we probably upload the wrong files. |
Hi @Xia0ben I have checked the 3D bounding box annotation. The chair orientation is correct. |
Hi @bertjiazheng , Here are images of the bounding boxes data for Scene 00000 I got when I downloaded two week ago: Color legend of boxes faces : In the images, both chairs have their colors oriented in the same direction, and it seems that all the objects in the kitchen have the same orientation, which is weird (especially for the furniture which should have its back to the walls ?). Otherwise, in the other rooms, the orientations seem fine (eg. the bed is correctly oriented, for example). Would you mind sending me the bbox_3d.json file for scene 00000 that you used to check please ? This way, I could determine if the fault lies somewhere in the bit of code I wrote to display the bounding boxes, or if we just had a different version of the data ? Otherwise, I'd be willing to send you by email an archive with my Jupyter Notebook and scene data used ? Wish you a pleasant day ! |
Hi @bertjiazheng , |
You can adopt visualize_bbox.py and only show these two chairs with ids (59,60). Replace these two lines (https://github.com/bertjiazheng/Structured3D/blob/master/visualize_bbox.py#L62_L63) with the following codes: for i in range(num_corner//2):
plt.plot(gt2dcorners[0, [i, i + num_corner]], gt2dcorners[1, [i, i + num_corner]], 'y')
for i in range(num_corner//2, num_corner):
plt.plot(gt2dcorners[0, [i, i + num_corner]], gt2dcorners[1, [i, i + num_corner]], 'g') |
You can check your code first. If you have any further questions, feel free to reopen this issue. |
Hi,
Thanks for this great dataset. I found out that the basis of the 3D bounding boxes (obtained from bbox_3d.json) of the two opposite facing chairs in Scene_00000 with instance ID's->(59,60) gotten from instance.png are the same. Could this be an error in the annotation?
The text was updated successfully, but these errors were encountered: