X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;ds=sidebyside;f=libctsim%2Freconstruct.cpp;h=591aed28282888f9441c2e190b1a5a38093740d5;hb=6afa21de8aa00b405de47584efe108c71df33e1b;hp=8e09a16b55be487ecba1c568ad835bdcfb3dd7b6;hpb=bfcc769cf8019eabc8c65c07257c8dbee4b4c977;p=ctsim.git diff --git a/libctsim/reconstruct.cpp b/libctsim/reconstruct.cpp index 8e09a16..591aed2 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.1 2000/09/02 05:13:57 kevin Exp $ +** $Id: reconstruct.cpp,v 1.3 2000/12/16 02:44:26 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 @@ -108,7 +108,7 @@ Reconstructor::plotFilter (SGP* pSGP) { #if HAVE_SGP int nVecFilter = m_pProcessSignal->getNFilterPoints(); - double adPlotXAxis [nVecFilter]; + double* adPlotXAxis = new double [nVecFilter]; if (nVecFilter > 0 && pSGP) { double f = m_pProcessSignal->getFilterMin(); @@ -123,7 +123,8 @@ Reconstructor::plotFilter (SGP* pSGP) ezplot.addCurve (adPlotXAxis, m_pProcessSignal->getFilter(), nVecFilter); ezplot.plot(); } - } + } + delete adPlotXAxis; #endif } @@ -139,7 +140,7 @@ Reconstructor::reconstructAllViews () void Reconstructor::reconstructView (int iStartView, int iViewCount, SGP* pSGP) { - double adFilteredProj [m_nFilteredProjections]; // filtered projections + double* adFilteredProj = new double [m_nFilteredProjections]; // filtered projections if (iViewCount <= 0) iViewCount = m_rProj.nView() - iStartView; @@ -195,5 +196,7 @@ Reconstructor::reconstructView (int iStartView, int iViewCount, SGP* pSGP) } #endif //HAVE_SGP } + + delete adFilteredProj; }