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

beta of fslfromascii

parent 8f491849
No related branches found
No related tags found
No related merge requests found
// fsl2ascii.cc - convert AVW to raw ASCII text
// Stephen Smith and Matthew Webster, FMRIB Image Analysis Group
// Copyright (C) 2001-2005 University of Oxford
// COPYRIGHT
#include "newimage/newimageall.h"
#include "miscmaths/miscmaths.h"
#include <fstream>
using namespace NEWIMAGE;
using namespace MISCMATHS;
void print_usage(const string& progname) {
cout << endl;
cout << "Usage: fslfromascii <input> <xsize> <ysize> <zsize> <tsize> <output>" << endl;
}
int main(int argc,char *argv[])
{
if (argc != 7)
{
print_usage(string(argv[0]));
return 1;
}
volume4D<float> output_volume(atoi(argv[2]),atoi(argv[3]),atoi(argv[4]),atoi(argv[5]));
ifstream input(argv[1]);
for(int t=0;t<=output_volume.maxt();t++)
for(int z=0;z<=output_volume.maxz();z++)
for(int y=0;y<=output_volume.maxy();y++)
for(int x=0;x<=output_volume.maxx();x++)
input >> output_volume(x,y,z,t);
save_volume4D(output_volume,string(argv[6]));
input.close();
return 0;
}
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