X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=include%2Fimagefile.h;h=945bdbfd03e55df5d1480adec8d6e1394792ed49;hp=6b6b4d530fac706ddf664dedb534ee74dc13df68;hb=7ec2cd66921180a624813dff9f8bac76c6b268cc;hpb=baba40afccf75bd75d612980fee023ff22c40952 diff --git a/include/imagefile.h b/include/imagefile.h index 6b6b4d5..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.19 2000/12/04 04:15:48 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 @@ -39,8 +39,6 @@ #include "fnetorderstream.h" #include "array2dfile.h" -using namespace std; - #ifdef HAVE_MPI #include #endif @@ -48,24 +46,21 @@ using namespace std; class F32Image : public Array2dFile { public: - F32Image (int nx, int ny) - : Array2dFile::Array2dFile (nx, ny, sizeof(kfloat32), Array2dFile::PIXEL_FLOAT32) - { - } - - F32Image (void) - : Array2dFile::Array2dFile() - { - setPixelFormat (Array2dFile::PIXEL_FLOAT32); - setPixelSize (sizeof(kfloat32)); - } - - kfloat32** getArray (void) - { return (kfloat32**) (m_arrayData); } - - const kfloat32* const * getArray (void) const - { return (const kfloat32**) (m_arrayData); } - + F32Image (int nx, int ny, int dataType = Array2dFile::DATA_TYPE_REAL); + F32Image (void); + + kfloat32** getArray (void) + { return (kfloat32**) (m_arrayData); } + + kfloat32** const getArray (void) const + { return (kfloat32** const) (m_arrayData); } + + kfloat32** getImaginaryArray (void) + { return (kfloat32**) (m_imaginaryArrayData); } + + kfloat32** const getImaginaryArray (void) const + { return (kfloat32** const) (m_imaginaryArrayData); } + #ifdef HAVE_MPI MPI::Datatype getMPIDataType (void) const { return MPI::FLOAT; } @@ -81,24 +76,21 @@ class F64Image : public Array2dFile { public: - F64Image (int nx, int ny) - : Array2dFile::Array2dFile (nx, ny, sizeof(kfloat64), Array2dFile::PIXEL_FLOAT64) - { - } - - F64Image (void) - : Array2dFile::Array2dFile () - { - setPixelFormat (PIXEL_FLOAT64); - setPixelSize (sizeof(kfloat64)); - } - - kfloat64** getArray (void) - { return (kfloat64**) (m_arrayData); } - - const kfloat64* const * getArray (void) const - { return (const kfloat64**) (m_arrayData); } - + F64Image (int nx, int ny, int dataType = Array2dFile::DATA_TYPE_REAL); + F64Image (void); + + kfloat64** getArray (void) + { return (kfloat64**) (m_arrayData); } + + kfloat64** const getArray (void) const + { return (kfloat64** const) (m_arrayData); } + + kfloat64** getImaginaryArray (void) + { return (kfloat64**) (m_imaginaryArrayData); } + + kfloat64** const getImaginaryArray (void) const + { return (kfloat64** const) (m_imaginaryArrayData); } + #ifdef HAVE_MPI MPI::Datatype getMPIDataType (void) const { return MPI::DOUBLE; } @@ -114,13 +106,15 @@ typedef F64Image ImageFileBase; typedef kfloat64 ImageFileValue; typedef kfloat64* ImageFileColumn; typedef kfloat64** ImageFileArray; -typedef const kfloat64* const * ImageFileArrayConst; +typedef kfloat64** const ImageFileArrayConst; +typedef const kfloat64* ImageFileColumnConst; #else typedef F32Image ImageFileBase; typedef kfloat32 ImageFileValue; typedef kfloat32* ImageFileColumn; typedef kfloat32** ImageFileArray; -typedef const kfloat32* const * ImageFileArrayConst; +typedef kfloat32** const ImageFileArrayConst; +typedef const kfloat32* ImageFileColumnConst; #endif @@ -134,21 +128,39 @@ class ImageFile : public ImageFileBase ImageFile (void) : ImageFileBase () {} + + bool convertRealToComplex (); + bool convertComplexToReal (); 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 (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 (ostream& os) const; - + void printStatistics (std::ostream& os) const; bool comparativeStatistics (const ImageFile& imComp, double& d, double& r, double& e) const; - - bool printComparativeStatistics (const ImageFile& imComp, ostream& os) const; - + bool printComparativeStatistics (const ImageFile& imComp, std::ostream& os) 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 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; + int display (void) const; - int displayScaling (const int scaleFactor, ImageFileValue pmin, ImageFileValue pmax) const; #if HAVE_PNG