/* Copyright (C) 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 #ifndef EXPOSE_TREACHEROUS #define EXPOSE_TREACHEROUS #endif #include "newimage/newimageall.h" #include "utils/log.h" #include "meshclass/meshclass.h" #include "probtrackxOptions.h" #include "particle.h" #include "tractvolsx.h" #include "miscmaths/SpMat.h" #include "csv.h" #include "utils/tracer_plus.h" using namespace std; using namespace NEWIMAGE; using namespace Utilities; using namespace TRACTVOLSX; using namespace mesh; using namespace PARTICLE; namespace TRACT{ void read_ascii_files(const string& filename,vector& content); // the following is a helper function for save_matrix* // to convert between nifti coords (external) and newimage coord (internal) void applycoordchange(volume& coordvol, const Matrix& old2new_mat); void applycoordchange(Matrix& coordvol, const Matrix& old2new_mat); class Streamliner{ //Everything in DTI space is done INSIDE this class and lower level classes (particle and tractvolsx) //This class communicates with higher level classes in Seed voxels. // probtrackxOptions& opts; Log& logger; Particle m_part; vector m_path; int m_tracksign; volume m_mask; // prior masks volume m_skipmask; CSV m_rubbish; CSV m_stop; CSV m_waymasks; CSV m_netmasks; vector m_way_passed_flags; ColumnVector m_net_passed_flags; //vector m_net_passed_flags; string m_waycond; volume4D m_prefdir; volume4D m_loopcheck; // transform seed<->diff space Matrix m_Seeds_to_DTI; Matrix m_DTI_to_Seeds; volume4D m_Seeds_to_DTI_warp; volume4D m_DTI_to_Seeds_warp; bool m_IsNonlinXfm; // rotdir stuff Matrix m_rotdir; volume4D m_jacx,m_jacy,m_jacz; Tractvolsx vols; float m_lcrat; float m_x_s_init; float m_y_s_init; float m_z_s_init; // Streamliner needs to know about matrix3 CSV m_mask3; CSV m_lrmask3; vector< pair > m_inmask3; // knows which node in mask3 and how far from seed (signed distance) vector< pair > m_inlrmask3; // we need this class to know about seed space const CSV& m_seeds; public: //Constructors Streamliner (const CSV& seeds); ~Streamliner (){} const CSV& get_seeds() const {return m_seeds;} const Tractvolsx& get_vols() const {return vols;} inline int nfibres() const {return vols.get_nfibres();} inline const float get_x_seed() const {return m_x_s_init;} inline const float get_y_seed() const {return m_y_s_init;} inline const float get_z_seed() const {return m_z_s_init;} const vector& get_path_ref() const{return m_path;} vector get_path() const{return m_path;} inline void reset(){ m_part.reset(); vols.reset(opts.fibst.value()); for(unsigned int i=0;i vexcl;vexcl.push_back(excl); load_netmasks(filename,vexcl); } void load_netmasks(const string& filename,const vector& exclude){ string tmpfilename=logger.appendDir("tmpnetmaskfile"); ofstream of(tmpfilename.c_str()); vector filelist; read_ascii_files(filename,filelist); int nfiles=0; for(unsigned int i=0;i >& get_inmask3() {return m_inmask3;} vector< pair >& get_inlrmask3() {return m_inlrmask3;} CSV get_mask3() {return m_mask3;} CSV get_lrmask3() {return m_lrmask3;} void fill_inmask3(const vector& crossedlocs3,const float& pathlength){ vector< pair > inmask3; for(unsigned int iter=0;iter mypair; mypair.first=crossedlocs3[iter]; mypair.second=m_tracksign*pathlength; inmask3.push_back(mypair); } m_inmask3.insert(m_inmask3.end(),inmask3.begin(),inmask3.end()); } void fill_inlrmask3(const vector& crossedlocs3,const float& pathlength){ vector< pair > inmask3; for(unsigned int iter=0;iter mypair; mypair.first=crossedlocs3[iter]; mypair.second=m_tracksign*pathlength; inmask3.push_back(mypair); } m_inlrmask3.insert(m_inlrmask3.end(),inmask3.begin(),inmask3.end()); } // ///////////////////////////////////////////////////////////////// }; class Counter{ probtrackxOptions& opts; Log& logger; volume m_prob; // spatial histogram of tract location within brain mask (in seed space) volume4D m_localdir; volume m_beenhere; Matrix m_I; vector m_path; CSV m_prob_alt; // spatial histogram of tracts with alternative user-defined mask CSV m_beenhere_alt; vector< vector > m_save_paths; // do we still need these? vector m_seedcounts; Matrix m_SeedCountMat; int m_SeedRow; int m_numseeds; // know where we are in seed space/counts (because seeds are now CSV) string m_curtype; int m_seedroi; int m_curloc; // classification targets CSV m_targetmasks; vector m_targflags; CSV m_s2t_count; Matrix m_s2tastext; int m_s2trow; // MATRIX 1 SpMat *m_ConMat1; // using sparse int m_Conrow1; // MATRIX 2 SpMat *m_ConMat2; // using sparse volume m_lrmask; volume m_lookup2; volume m_beenhere2; ColumnVector m_lrdim; // MATRIX 3 SpMat *m_ConMat3; // using sparse vector m_inmask3; // misc ColumnVector m_seedsdim; Streamliner& m_stline; public: Counter(Streamliner& stline):opts(probtrackxOptions::getInstance()), logger(LogSingleton::getInstance()), m_stline(stline) { m_numseeds = m_stline.get_seeds().nLocs(); m_beenhere.reinitialize(m_stline.get_seeds().xsize(), m_stline.get_seeds().ysize(), m_stline.get_seeds().zsize()); m_beenhere=0; m_seedsdim.ReSize(3); m_seedsdim << m_stline.get_seeds().xdim() << m_stline.get_seeds().ydim() << m_stline.get_seeds().zdim(); m_I=IdentityMatrix(4); } ~Counter(){} Streamliner& get_stline(){return m_stline;} void initialise(); void initialise_path_dist(){ if(opts.verbose.value()>0) cout<<"Initialise pathdist"<0) cout<<"....done"<& keeptotal); void save(); void save_pathdist(); void save_pathdist(string add); void save_seedcounts(); void save_matrix1(); void save_matrix2(); void save_matrix3(); void add_path(); void save_paths(); }; class Seedmanager{ probtrackxOptions& opts; Log& logger; Counter& m_counter; ColumnVector m_seeddims; public: Seedmanager(Counter& counter):opts(probtrackxOptions::getInstance()), logger(LogSingleton::getInstance()), m_counter(counter){ m_seeddims.ReSize(3); m_seeddims<