From 1e7e1cea939456bb5b0a5264f1142f651259e77a Mon Sep 17 00:00:00 2001 From: Duncan Mortimer <duncan.mortimer@ndcn.ox.ac.uk> Date: Wed, 19 Dec 2007 14:50:06 +0000 Subject: [PATCH] Re-comitting my 10.5 changes --- fslstats.cc | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/fslstats.cc b/fslstats.cc index 12eb3f9..740afb5 100644 --- a/fslstats.cc +++ b/fslstats.cc @@ -9,6 +9,8 @@ #include "miscmaths/miscmaths.h" #include "newimage/newimageall.h" #include "newimage/costfns.h" +#include "utils/fsl_isfinite.h" + using namespace NEWIMAGE; using namespace MISCMATHS; @@ -17,12 +19,6 @@ bool masks_used=false; bool lthr_used=false; bool uthr_used=false; -#if defined ( __CYGWIN__ ) || defined (__sun) -extern "C" { -#include <ieeefp.h> //for finite -} -#endif - void print_usage(const string& progname) { cout << "Usage: fslstats <input> [options]" << endl << endl; cout << endl; @@ -171,7 +167,7 @@ int fmrib_main_float(int argc, char* argv[]) for (int z=vol.minz(); z<=vol.maxz(); z++) for (int y=vol.miny(); y<=vol.maxy(); y++) for (int x=vol.minx(); x<=vol.maxx(); x++) - if (!finite((double)vol(x,y,z,t))) + if (!isfinite((double)vol(x,y,z,t))) vol(x,y,z,t)=0; } else if (sarg=="-m") { if (masks_used) cout << vol.mean(mask) << " "; -- GitLab