X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=include%2Fimagefile.h;h=7c7daba56eae43d69172b47763cbb2dd69fa7a28;hp=a7e69d75f54dba97efacc239d0de3ec7b57cfbb7;hb=5c6b29ab4885308cc3381af6e0a68f4804956d2e;hpb=c24c1c0721df40e77822ad2b9ec01a944012ff42 diff --git a/include/imagefile.h b/include/imagefile.h index a7e69d7..7c7daba 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.23 2000/12/22 04:18:00 kevin Exp $ +** $Id: imagefile.h,v 1.24 2000/12/29 15:45:06 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 @@ -120,25 +120,25 @@ 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 getMinMax (double& min, double& max) const; - void printStatistics (std::ostream& os) const; - bool comparativeStatistics (const ImageFile& imComp, double& d, double& r, double& e) const; - bool printComparativeStatistics (const ImageFile& imComp, std::ostream& os) const; - bool subtractImages (const ImageFile& rRHS, ImageFile& result) const; - + bool subtractImages (const ImageFile& rRHS, ImageFile& result) const; bool addImages (const ImageFile& rRHS, ImageFile& result) const; - bool multiplyImages (const ImageFile& rRHS, ImageFile& result) const; - bool divideImages (const ImageFile& rRHS, ImageFile& result) const; + bool invertPixelValues (ImageFile& result) const; + bool sqrt (ImageFile& result) const; + bool square (ImageFile& result) const; + bool log (ImageFile& result) const; + bool exp (ImageFile& result) const; + bool FFTMagnitude (ImageFile& result) const; + bool FFTPhase (ImageFile& result) const; + int display (void) const; - int displayScaling (const int scaleFactor, ImageFileValue pmin, ImageFileValue pmax) const; #if HAVE_PNG