// Definitions of class used to write fnirt // displacement files. // // fnirt_file_writer.h // // Jesper Andersson, FMRIB Image Analysis Group // // Copyright (C) 2007-2012 University of Oxford // /* Part of FSL - FMRIB's Software Library http://www.fmrib.ox.ac.uk/fsl fsl@fmrib.ox.ac.uk Developed at FMRIB (Oxford Centre for Functional Magnetic Resonance Imaging of the Brain), Department of Clinical Neurology, Oxford University, Oxford, UK LICENCE FMRIB Software Library, Release 5.0 (c) 2012, The University of Oxford (the "Software") The Software remains the property of the University of Oxford ("the University"). The Software is distributed "AS IS" under this Licence solely for non-commercial use in the hope that it will be useful, but in order that the University as a charitable foundation protects its assets for the benefit of its educational and research purposes, the University makes clear that no condition is made or to be implied, nor is any warranty given or to be implied, as to the accuracy of the Software, or that it will be suitable for any particular purpose or for use under any specific conditions. Furthermore, the University disclaims all responsibility for the use which is made of the Software. It further disclaims any liability for the outcomes arising from using the Software. The Licensee agrees to indemnify the University and hold the University harmless from and against any and all claims, damages and liabilities asserted by third parties (including claims for negligence) which arise directly or indirectly from the use of the Software or the sale of any products based on the Software. No part of the Software may be reproduced, modified, transmitted or transferred in any form or by any means, electronic or mechanical, without the express permission of the University. The permission of the University is not required if the said reproduction, modification, transmission or transference is done without financial return, the conditions of this Licence are imposed upon the receiver of the product, and all original and amended source code is included in any transmitted product. You may be held legally responsible for any copyright infringement that is caused or encouraged by your failure to abide by these terms and conditions. You are not permitted under this Licence to use this Software commercially. Use for which any financial return is received shall be defined as commercial use, and includes (1) integration of all or part of the source code or the Software into a product for sale or license by or on behalf of Licensee to third parties or (2) use of the Software or any derivative of it for research with the final aim of developing software products for sale or license to a third party or (3) use of the Software or any derivative of it for research with the final aim of developing non-software products for sale or license to a third party, or (4) use of the Software to provide any service to an external organisation for which payment is received. If you are interested in using the Software commercially, please contact Isis Innovation Limited ("Isis"), the technology transfer company of the University, to negotiate a licence. Contact details are: innovation@isis.ox.ac.uk quoting reference DE/9564. */ #include #include #include #include "newmat.h" #ifndef EXPOSE_TREACHEROUS #define EXPOSE_TREACHEROUS // To allow us to use .save_orig_... #endif #include "newimage/newimageall.h" #include "basisfield/basisfield.h" #include "basisfield/splinefield.h" #include "basisfield/dctfield.h" #include "warpfns.h" #include "fnirt_file_reader.h" #include "fnirt_file_writer.h" using namespace std; using namespace NEWMAT; using namespace BASISFIELD; using namespace boost; namespace NEWIMAGE { FnirtFileWriter::FnirtFileWriter(const string& fname, const vector >& fields, Matrix aff) { if (fields.size() != 3 || !fields[0] || !fields[1] || !fields[2]) { throw FnirtFileWriterException("FnirtFileWriter: Invalid vector fields"); } common_coef_construction(fname,*(fields[0]),*(fields[1]),*(fields[2]),aff); } FnirtFileWriter::FnirtFileWriter(const string& fname, const volume& fieldx, const volume& fieldy, const volume& fieldz) { volume tmp(fieldx.xsize(),fieldx.ysize(),fieldx.zsize()); tmp.copyproperties(fieldx); Matrix aff = IdentityMatrix(4); common_field_construction(fname,tmp,fieldx,fieldy,fieldz,aff); } FnirtFileWriter::FnirtFileWriter(const string& fname, const volume& ref, const volume4D& vfields, Matrix aff) { if (vfields.tsize() != 3) throw FnirtFileWriterException("FnirtFileWriter: Invalid 4D volume"); common_field_construction(fname,ref,vfields[0],vfields[1],vfields[2],aff); } FnirtFileWriter::FnirtFileWriter(const string& fname, const volume4D& vfields) { if (vfields.tsize() != 3) throw FnirtFileWriterException("FnirtFileWriter: Invalid 4D volume"); volume tmp(vfields[0].xsize(),vfields[0].ysize(),vfields[0].zsize()); tmp.copyproperties(vfields[0]); Matrix aff = IdentityMatrix(4); common_field_construction(fname,tmp,vfields[0],vfields[1],vfields[2],aff); } //////////////////////////////////////////////////////////////////////////////////////////////// // // The coefficients are saved in a slightly dodgy format where the fields of the niftii // header are used to store information that is neccessary for us to reconstruct the // displacement fields from the coefficients. E.g. the affine starting guess is stored // in the sform, the knot-spacings in the "pixdims" and the matrix size of the field/template // in the offsets of the qform. // For tis reason the coefficient files need to be read written usinge the _orig_ forms // of the read/write_volume functions. Otherwise the i/o-functions would interpret these // fields and potentially left-right swap on read/write. // //////////////////////////////////////////////////////////////////////////////////////////////// void FnirtFileWriter::common_coef_construction(const string& fname, const basisfield& fieldx, const basisfield& fieldy, const basisfield& fieldz, const Matrix& aff) { volume4D coefs(fieldx.CoefSz_x(),fieldx.CoefSz_y(),fieldx.CoefSz_z(),3); vector ksp(3,1.0); try { const splinefield& f = dynamic_cast(fieldx); ksp[0] = float(f.Ksp_x()); ksp[1] = float(f.Ksp_y()); ksp[2] = float(f.Ksp_z()); if (f.Order() == 2) coefs.set_intent(FSL_QUADRATIC_SPLINE_COEFFICIENTS,f.Vxs_x(),f.Vxs_y(),f.Vxs_z()); else if (f.Order() == 3) coefs.set_intent(FSL_CUBIC_SPLINE_COEFFICIENTS,f.Vxs_x(),f.Vxs_y(),f.Vxs_z()); } catch (...) { try { const dctfield& f = dynamic_cast(fieldx); coefs.set_intent(FSL_DCT_COEFFICIENTS,f.Vxs_x(),f.Vxs_y(),f.Vxs_z()); throw FnirtFileWriterException("common_coef_construction: Saving of DCT coefficients not yet implemented"); } catch (...) { throw FnirtFileWriterException("common_coef_construction: Unknown field type"); } } coefs.setxdim(ksp[0]); coefs.setydim(ksp[1]); coefs.setzdim(ksp[2]); Matrix qform(4,4); qform = IdentityMatrix(4); qform(1,4) = fieldx.FieldSz_x(); qform(2,4) = fieldx.FieldSz_y(); qform(3,4) = fieldx.FieldSz_z(); coefs.set_qform(NIFTI_XFORM_SCANNER_ANAT,qform); coefs.set_sform(NIFTI_XFORM_SCANNER_ANAT,aff); vector > coefp(3); coefp[0]=fieldx.GetCoef(); coefp[1]=fieldy.GetCoef(); coefp[2]=fieldz.GetCoef(); for (unsigned int v=0; v<3; v++) { ColumnVector c = *(coefp[v]); for (unsigned int k=0, vindx=0; k& ref, const volume& fieldx, const volume& fieldy, const volume& fieldz, const Matrix& aff) { volume4D fields(ref.xsize(),ref.ysize(),ref.zsize(),3); fields.copyproperties(ref); Matrix M; bool add_affine = false; if (add_affine = ((aff-IdentityMatrix(4)).MaximumAbsoluteValue() > 1e-6)) { // Add affine part to fields M = (aff.i() - IdentityMatrix(4))*ref.sampling_mat(); } if (samesize(ref,fieldx,true)) { // If ref is same size as the original field fields[0] = fieldx; fields[1] = fieldy; fields[2] = fieldz; fields.copyproperties(ref); // Put qform/sform and stuff back. if (add_affine) { ColumnVector xv(4), xo(4); int zs = ref.zsize(), ys = ref.ysize(), xs = ref.xsize(); xv(4) = 1.0; for (int z=0; z& ref, const volume& fieldx, const volume& fieldy, const volume& fieldz, const Matrix& aff) { volume4D fields(fieldx.xsize(),fieldx.ysize(),fieldx.zsize(),3); fields[0] = fieldx; fields[1] = fieldy; fields[2] = fieldz; fields.copyproperties(ref); if ((aff-IdentityMatrix(4)).MaximumAbsoluteValue() > 1e-6) { // Add affine part to fields Matrix M = (aff.i() - IdentityMatrix(4))*ref.sampling_mat(); ColumnVector xv(4), xo(4); int zs = ref.zsize(), ys = ref.ysize(), xs = ref.xsize(); xv(4) = 1.0; for (int z=0; z