X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=include%2Fimagefile.h;fp=include%2Fimagefile.h;h=945bdbfd03e55df5d1480adec8d6e1394792ed49;hp=57d093f83c397499e90c01490596a70241c8fa6a;hb=7ec2cd66921180a624813dff9f8bac76c6b268cc;hpb=bc5a9ca28bc4da3691fb859945d2862f6155835b diff --git a/include/imagefile.h b/include/imagefile.h index 57d093f..945bdbf 100644 --- a/include/imagefile.h +++ b/include/imagefile.h @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: imagefile.h,v 1.25 2000/12/29 19:30:08 kevin Exp $ +** $Id: imagefile.h,v 1.26 2001/01/01 10:14:34 kevin Exp $ ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License (version 2) as @@ -135,7 +135,7 @@ class ImageFile : public ImageFileBase void filterResponse (const char* const domainName, double bw, const char* const filterName, double filt_param); void statistics (double& min, double& max, double& mean, double& mode, double& median, double& stddev) const; - void statistics (ImageFileArrayConst& v, double& min, double& max, double& mean, double& mode, double& median, double& stddev) const; + void statistics (ImageFileArrayConst v, double& min, double& max, double& mean, double& mode, double& median, double& stddev) const; void getMinMax (double& min, double& max) const; void printStatistics (std::ostream& os) const; bool comparativeStatistics (const ImageFile& imComp, double& d, double& r, double& e) const; @@ -153,6 +153,10 @@ class ImageFile : public ImageFileBase bool exp (ImageFile& result) const; bool fourier (ImageFile& result) const; bool inverseFourier (ImageFile& result) const; +#ifdef HAVE_FFTW + bool fft (ImageFile& result) const; + bool ifft (ImageFile& result) const; +#endif bool magnitude (ImageFile& result) const; bool phase (ImageFile& result) const;