// fslcreatehd.cc - Copy certain parts of an AVW header // Mark Jenkinson, Steve Smith and Matthew Webster, FMRIB Image Analysis Group // Copyright (C) 2001-2005 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 "newimage/newimageall.h" #include #include using namespace NEWIMAGE; void print_usage(const string& progname) { cout << endl; cout << "Usage: fslcreatehd " << endl; cout << " fslcreatehd " << endl; cout << " Datatype values: " << DT_UNSIGNED_CHAR << "=char, " << DT_SIGNED_SHORT << "=short, " << DT_SIGNED_INT <<"=int, " << DT_FLOAT << "=float, " << DT_DOUBLE<< "=double" << endl; cout << " In the second form, an XML-ish form of nifti header is read (as output by fslhd -x)" << endl; cout << " Note that stdin is used if '-' is used in place of a filename" << endl; } int fslcreatehd_main(int argc, char *argv[]) { FSLIO* fslio; void *buffer=NULL; char *hdrxml, *filename; int fileread=1, filetype=-1, existingimage=0; size_t bufsize=0; short x,y,z,v, dt=-1; if (argc==3) { /* use the XML form of header specification */ filename = argv[2]; } else { filename = argv[13]; } /* check if file already exists and if so, read the image contents */ /* also store the size of this buffer for later in case it is wrong */ if (FslFileExists(filename)) { /* buffer = FslReadAllVolumes(fslio,filename); */ existingimage = 1; fslio = FslOpen(filename,"rb"); FslGetDim(fslio,&x,&y,&z,&v); filetype = FslGetFileType(fslio); bufsize = x * y * z * v * (FslGetDataType(fslio,&dt) / 8); buffer = (void *) calloc(bufsize,1); FslReadVolumes(fslio,buffer,v); FslClose(fslio); } if (existingimage) { fslio = FslXOpen(filename,"wb",filetype); } else { fslio = FslOpen(filename,"wb"); filetype = FslGetFileType(fslio); } if (FslBaseFileType(FslGetFileType(fslio))==FSL_TYPE_MINC) { cerr << "Minc file type is not supported yet" << endl; exit(EXIT_FAILURE); } if (argc>3) { /* set uninteresting defaults */ if (existingimage) { FslSetDataType(fslio,dt); } else { FslSetDataType(fslio,atoi(argv[12])); } FslSetDim(fslio,atoi(argv[1]),atoi(argv[2]),atoi(argv[3]),atoi(argv[4])); FslSetVoxDim(fslio,atof(argv[5]),atof(argv[6]),atof(argv[7]),atof(argv[8])); { short short_array[100]; short_array[0]=atoi(argv[9]); short_array[1]=atoi(argv[10]); short_array[2]=atoi(argv[11]); if ( (short_array[0]!=0) || (short_array[1]!=0) || (short_array[2]!=0) ) { FslSetAnalyzeSform(fslio,short_array, atof(argv[5]),atof(argv[6]),atof(argv[7])); } } } else { /* read XML form */ char *newstr, *oldfname, *oldiname; ifstream inputfile; if (strcmp(argv[1],"-")==0) {fileread=0;} newstr = (char *)calloc(10000,1); oldfname = (char *)calloc(10000,1); oldiname = (char *)calloc(10000,1); //hdrxml = (char *)calloc(65534,1); /* too long, to be safe */ hdrxml = new char[65534]; if (fileread) { inputfile.open (argv[1], ifstream::in | ifstream::binary); if (!inputfile.is_open()) { cerr << "Cannot open file " << argv[1] << endl; return EXIT_FAILURE; } } do { if (fileread) { inputfile.getline(newstr,9999); // maybe use > for delimiting character remove while increase size } else { if (fgets(newstr,9999,stdin)==NULL) break; } strcat(hdrxml,newstr); } while (strcmp(newstr + strlen(newstr) - 2,"/>")!=0); strcpy(oldfname,fslio->niftiptr->fname); strcpy(oldiname,fslio->niftiptr->iname); int bytes_read=1; //dummy for function call fslio->niftiptr = nifti_image_from_ascii(hdrxml, &bytes_read); if (fslio->niftiptr == NULL) { cerr << "Incomplete or incorrect text: could not form header info" << endl; return EXIT_FAILURE; } fslio->niftiptr->fname = oldfname; fslio->niftiptr->iname = oldiname; //free(hdrxml); delete [] hdrxml; if (fileread) inputfile.close(); } /* reset filetype and datatype in case it has been overwritten */ FslSetFileType(fslio,filetype); if (existingimage) { /* dt is only set if an image was previously read */ FslSetDataType(fslio,dt); } fslio->niftiptr->byteorder = nifti_short_order(); // if (strcmp(argv[argc-1],"-r")==0) { // /* swap */ // if (nifit_short_order()==MSB_FIRST) fslio->niftiptr->byteorder = LSB_FIRST; // else fslio->niftiptr->byteorder = MSB_FIRST; // } /* write header */ FslWriteHeader(fslio); /* if previously read buffer is wrong size then make a zero image here */ FslGetDim(fslio,&x,&y,&z,&v); if ( bufsize != ( x * y * z * v * (FslGetDataType(fslio,&dt)/8)) ) { if (bufsize>0) free(buffer); /* only if previously read */ buffer = (void *) calloc(x * y * z * v,FslGetDataType(fslio,&dt)/8); } /* write the data out - either from previous read or zeros */ FslWriteVolumes(fslio,buffer,fslio->niftiptr->dim[4]); FslClose(fslio); return 0; } int main(int argc,char *argv[]) { if (argc != 14 && argc != 3) { print_usage(string(argv[0])); return 1; } return fslcreatehd_main(argc,argv); }