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
How can I get the coronal plane?why can I just get the cross section?
The text was updated successfully, but these errors were encountered:
Not sure I fully understand your question. You may need to elaborate.
The data returned by pynrrd is a Numpy data array, so slicing the data from there is up to you.
pynrrd
For example, here is how you could slice the coronal plane for the data:
import nrrd data, header = nrrd.read('FILE_PATH_HERE') coronalPlane20 = data[:, 20, :]
Please elaborate and explain your question in more detail. I'm going to close this thread in a few days if no response is given.
Sorry, something went wrong.
No branches or pull requests
How can I get the coronal plane?why can I just get the cross section?
The text was updated successfully, but these errors were encountered: