We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi,
what does the below line of code do?
ndf/dataprocessing/boundary_sampling.py
Line 38 in 570d770
the X's and Z's are being swapped, but why?
The text was updated successfully, but these errors were encountered:
i figure it out, its because of this: https://pytorch.org/docs/stable/generated/torch.nn.functional.grid_sample.html In the case of 5D inputs, grid[n, d, h, w] specifies the x, y, z pixel locations for interpolating output[n, :, d, h, w].
grid[n, d, h, w]
x, y, z
output[n, :, d, h, w]
Sorry, something went wrong.
No branches or pull requests
Hi,
what does the below line of code do?
ndf/dataprocessing/boundary_sampling.py
Line 38 in 570d770
the X's and Z's are being swapped, but why?
The text was updated successfully, but these errors were encountered: