Skip to content
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

Bugs Report #53

Closed
X-niper opened this issue Aug 2, 2022 · 1 comment
Closed

Bugs Report #53

X-niper opened this issue Aug 2, 2022 · 1 comment

Comments

@X-niper
Copy link

X-niper commented Aug 2, 2022

We have tested "project_onto_planes_index" function in "render.py" file.

We found that the returned projection tensor did not show expected value. To get correct result, you may fix "generate_planes" as follows,

def generate_planes():
"""
Defines planes by the three vectors that form the "axes" of the
plane. Should work with arbitrary number of planes and planes of
arbitrary orientation.
"""
return torch.tensor([[[1, 0, 0],
[0, 1, 0],
[0, 0, 1]],
[[0, 1, 0],
[0, 0, 1],
[1, 0, 0]],
[[0, 0, 1],
[1, 0, 0],
[0, 1, 0]]], dtype=torch.float32)

@X-niper X-niper closed this as completed Aug 2, 2022
@luminohope
Copy link
Collaborator

Please see the relevant post here: #67

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants