X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=libctsim%2Fimagefile.cpp;h=4cae5d2569768a26e5439871589e682663395670;hp=8756bc88317082473d7385d5813e980077aa04b6;hb=44ba9ce559d2d52cbd7bbea6bcd76242840fd3eb;hpb=595e63c804284d460ce4d032c3848b75bc57186d diff --git a/libctsim/imagefile.cpp b/libctsim/imagefile.cpp index 8756bc8..4cae5d2 100644 --- a/libctsim/imagefile.cpp +++ b/libctsim/imagefile.cpp @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: imagefile.cpp,v 1.1 2000/06/19 02:59:34 kevin Exp $ +** $Id: imagefile.cpp,v 1.2 2000/06/20 17:54:51 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 @@ -110,9 +110,9 @@ image_filter_response (ImageFile& im, const DomainType domain, double bw, const double r = sqrt(i * i + j * j); if (domain == D_SPATIAL) - v[i+hx][j+hy] = filter_spatial_response_analytic (filt_type, r, bw, filt_param); + v[i+hx][j+hy] = SignalFilter::spatialResponseAnalytic (filt_type, bw, r, filt_param); else - v[i+hx][j+hy] = filter_frequency_response (filt_type, r, bw, filt_param); + v[i+hx][j+hy] = SignalFilter::frequencyResponse (filt_type, bw, r, filt_param); if (opt_trace >= TRACE_PHM) printf ("r=%8.4f, v=%8.4f\n", r, v[i+hx][j+hy]); }