X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=libctsim%2Freconstruct.cpp;h=245a36e951e1900de860a0d593a6d9ecd58a49b1;hp=df456214c7b2a4066e7d9caa986c5eff9591d352;hb=4a5567b8df652cc3168bb9d439bc23f973a2b5ea;hpb=5c6b29ab4885308cc3381af6e0a68f4804956d2e diff --git a/libctsim/reconstruct.cpp b/libctsim/reconstruct.cpp index df45621..245a36e 100644 --- a/libctsim/reconstruct.cpp +++ b/libctsim/reconstruct.cpp @@ -8,7 +8,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: reconstruct.cpp,v 1.6 2000/12/29 15:45:06 kevin Exp $ +** $Id: reconstruct.cpp,v 1.8 2001/01/27 21:02:20 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 @@ -123,7 +123,7 @@ Reconstructor::plotFilter (SGP* pSGP) ezplot.addCurve (adPlotXAxis, m_pProcessSignal->getFilter(), nVecFilter); ezplot.plot (pSGP); } - } + } delete adPlotXAxis; #endif } @@ -165,7 +165,7 @@ Reconstructor::reconstructView (int iStartView, int iViewCount, SGP* pSGP, bool } #endif #endif - + if (bBackprojectView) m_pBackprojector->BackprojectView (adFilteredProj, rDetArray.viewAngle()); @@ -178,26 +178,31 @@ Reconstructor::reconstructView (int iStartView, int iViewCount, SGP* pSGP, bool ezplotProj.ezset ("xticks major 5"); ezplotProj.ezset ("xlabel "); ezplotProj.ezset ("ylabel "); - ezplotProj.ezset ("yporigin .5"); - ezplotProj.ezset ("ylength .5"); + ezplotProj.ezset ("yporigin 0.1"); + ezplotProj.ezset ("ylength 0.45"); + ezplotProj.ezset ("xlength 0.66"); ezplotProj.ezset ("box."); ezplotProj.ezset ("grid."); ezplotProj.addCurve (m_adPlotXAxis, detval, m_rProj.nDet()); + pSGP->setTextPointSize(12); ezplotProj.plot (pSGP); ezplotProj.ezset ("clear"); ezplotProj.ezset ("title Filtered Projection"); ezplotProj.ezset ("xticks major 5"); ezplotProj.ezset ("xlabel "); ezplotProj.ezset ("ylabel "); - ezplotProj.ezset ("ylength .5"); + ezplotProj.ezset ("yporigin 0.55"); + ezplotProj.ezset ("ylength 0.45"); + ezplotProj.ezset ("xlength 0.66"); ezplotProj.ezset ("box"); ezplotProj.ezset ("grid"); ezplotProj.addCurve (m_adPlotXAxis, adFilteredProj, m_nFilteredProjections); + pSGP->setTextPointSize(12); ezplotProj.plot (pSGP); } #endif //HAVE_SGP } - - delete adFilteredProj; + + delete adFilteredProj; }