r7061: initial property settings
[ctsim.git] / include / imagefile.h
index 140955c2bc5b32e4898470b63edaed6d4d3a72ff..f300cdba9bc8d43990a88b495edf1652cef4d0b4 100644 (file)
@@ -9,7 +9,7 @@
 **  This is part of the CTSim program
 **  Copyright (c) 1983-2001 Kevin Rosenberg
 **
-**  $Id: imagefile.h,v 1.34 2001/03/18 18:08:25 kevin Exp $
+**  $Id$
 **
 **  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
@@ -149,6 +149,7 @@ public:
   static const int EXPORT_FORMAT_DICOM;
   static const int IMPORT_FORMAT_DICOM;
 #endif
+  static const int EXPORT_FORMAT_RAW;
 
   static const int getExportFormatCount() {return s_iExportFormatCount;}
   static const char** getExportFormatNameArray() {return s_aszExportFormatName;}
@@ -214,9 +215,8 @@ public:
 #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;
+  bool real (ImageFile& result) const;
+  bool imaginary (ImageFile& result) const;
 
   bool exportImage (const char* const pszFormat, const char* const pszFilename, int nxcell, int nycell, double densmin, double densmax);
 
@@ -232,6 +232,7 @@ public:
   bool writeImagePGM (const char* const outfile, int nxcell, int nycell, double densmin, double densmax);
   bool writeImagePGMASCII (const char* const outfile, int nxcell, int nycell, double densmin, double densmax);
   bool readImagePPM (const char* const pszFile);
+  bool writeImageRaw(const char* const outfile, int nxcell, int nycell);
   bool writeImageText (const char* const outfile);
 
   static double redGrayscaleFactor() {return s_dRedGrayscaleFactor;}