Skip to content
Snippets Groups Projects
Commit 7472a45f authored by Matthew Webster's avatar Matthew Webster
Browse files

Latest version Jan 15

parent 381f5e4e
No related branches found
No related tags found
No related merge requests found
......@@ -42,7 +42,7 @@ int fmrib_main(int argc,char *argv[])
}
volume4D<T> invol;
read_orig_volume4D(invol,inname);
read_orig_volume(invol,inname);
Matrix affmat;
affmat = invol.swapmat(newx,newy,newz);
......@@ -61,11 +61,11 @@ int fmrib_main(int argc,char *argv[])
cout << "WARNING:: Flipping Left/Right orientation (as det < 0)" << endl;
}
invol.swapdimensions(newx,newy,newz,true);
invol.swapdimensions(newx,newy,newz);
int retval=0;
if (outname!="") {
retval = save_orig_volume4D(invol,outname);
retval = save_orig_volume(invol,outname);
}
return retval;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment