X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=include%2Fbackprojectors.h;h=5e897cd22795ed259d00317ffcf0cc91e0ef4951;hp=f34964cf7ec9257c0b37c3b81d262b089450cd41;hb=1a050c98763fbbc0662731b0b76953acede6f5d7;hpb=c8b19dfaffba9f06d8b6c40cb1bb83a8964867f7 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); };