X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=libctsim%2Freconstruct.cpp;h=58f17bc9ac7e7bfc530f446246cc5cf3d388a134;hp=8e09a16b55be487ecba1c568ad835bdcfb3dd7b6;hb=ee0105d74fec9d6bfd236e22e9e1d315e46c568e;hpb=806adf54f5b8d061662696b3b498bfab3cd8b2e6 diff --git a/libctsim/reconstruct.cpp b/libctsim/reconstruct.cpp index 8e09a16..58f17bc 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.2 2000/12/06 01:46:43 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 @@ -139,7 +139,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 +195,7 @@ Reconstructor::reconstructView (int iStartView, int iViewCount, SGP* pSGP) } #endif //HAVE_SGP } + + delete adFilteredProj; }