-
Notifications
You must be signed in to change notification settings - Fork 141
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
Inplane Axial display instead of Coronal #332
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Dear mrVista experts,
I am writing because I am trying to do retinotopy using mrVista and I’ve been having some problems with the inplane.
We did not collect an inplane, so I did the average of a functional scan and used this as an inplane using the code you provided in #179:
ni = niftiRead('myEPI.nii');
data = mean(niftiGet(ni, 'data'), 4);
ni = niftiSet(ni, 'data', data);
dims = niftiGet(ni, 'dim');
ni = niftiSet(ni, 'dim', [dims(1:3) 1]);
ni.fname = 'myInplane.nii';
niftiWrite(ni);I
But when displaying the inplane both in mrVista and rxAlign the orientation is axial, and I would like to have the coronal.
Is there a way to change this display? Is there any other way to get the inplane when you only have the functionals and the t1?
I would really appreciate some help,
Thank you so much in advance:)
The text was updated successfully, but these errors were encountered: