X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=include%2Fbackprojectors.h;h=5e897cd22795ed259d00317ffcf0cc91e0ef4951;hb=bb09705ec0a20bf5b41b4248cf7800b000bc3fcb;hp=f34964cf7ec9257c0b37c3b81d262b089450cd41;hpb=79b656146b04b1d57d1ac27f9f2e5474e17c4936;p=ctsim.git diff --git a/include/backprojectors.h b/include/backprojectors.h index f34964c..5e897cd 100644 --- a/include/backprojectors.h +++ b/include/backprojectors.h @@ -1,10 +1,10 @@ /***************************************************************************** ** FILE IDENTIFICATION ** -** Name: backproject.h +** Name: backproject.h ** Purpose: Backprojection classes -** Programmer: Kevin Rosenberg -** Date Started: June 2000 +** Programmer: Kevin Rosenberg +** Date Started: June 2000 ** ** This is part of the CTSim program ** Copyright (c) 1983-2001 Kevin Rosenberg @@ -60,11 +60,11 @@ class Backprojector static const int INTERP_3BSPLINE; #endif - Backprojector (const Projections& proj, ImageFile& im, const char* const backprojName, + Backprojector (const Projections& proj, ImageFile& im, const char* const backprojName, const char* const interpName, const int interpFactor, const ReconstructionROI* pROI); ~Backprojector (); - + void BackprojectView (const double* const viewData, const double viewAngle); void PostProcessing(); @@ -111,7 +111,7 @@ class Backprojector class Backproject { public: - Backproject (const Projections& proj, ImageFile& im, int interpID, const int interpFactor, + Backproject (const Projections& proj, ImageFile& im, int interpID, const int interpFactor, const ReconstructionROI* pROI); virtual ~Backproject (); @@ -131,10 +131,10 @@ class Backproject kint32 ny; double detInc; double rotScale; - int iDetCenter; // index refering to L=0 projection + int iDetCenter; // index refering to L=0 projection int nDet; double xMin, xMax, yMin, yMax; // Retangular coords of phantom - double xInc, yInc; // size of cells + double xInc, yInc; // size of cells int m_interpFactor; double m_dFocalLength; double m_dSourceDetectorLength; @@ -196,7 +196,7 @@ class BackprojectIntDiff : public BackprojectDiff BackprojectIntDiff (const Projections& proj, ImageFile& im, int interpID, const int interpFactor, const ReconstructionROI* pROI) : BackprojectDiff (proj, im, interpID, interpFactor, pROI) {} - + void BackprojectView (const double* const t, const double view_angle); };