source: trunk/src/ATrous/atrous_1d_reconstruct.cc @ 872

Last change on this file since 872 was 849, checked in by MatthewWhiting, 13 years ago
  • Adding the new files to the makefile
  • New functions to find stats for differences between two arrays
  • Implementing some of the new functions in the reconstruction - also making use of the robust stats flag in the Param set.
File size: 7.5 KB
RevLine 
[299]1// -----------------------------------------------------------------------
2// atrous_1d_reconstruct.cc: 1-dimensional wavelet reconstruction.
3// -----------------------------------------------------------------------
4// Copyright (C) 2006, Matthew Whiting, ATNF
5//
6// This program is free software; you can redistribute it and/or modify it
7// under the terms of the GNU General Public License as published by the
8// Free Software Foundation; either version 2 of the License, or (at your
9// option) any later version.
10//
11// Duchamp is distributed in the hope that it will be useful, but WITHOUT
12// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14// for more details.
15//
16// You should have received a copy of the GNU General Public License
17// along with Duchamp; if not, write to the Free Software Foundation,
18// Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA
19//
20// Correspondence concerning Duchamp may be directed to:
21//    Internet email: Matthew.Whiting [at] atnf.csiro.au
22//    Postal address: Dr. Matthew Whiting
23//                    Australia Telescope National Facility, CSIRO
24//                    PO Box 76
25//                    Epping NSW 1710
26//                    AUSTRALIA
27// -----------------------------------------------------------------------
[3]28#include <iostream>
[348]29#include <sstream>
[3]30#include <iomanip>
31#include <math.h>
[393]32#include <duchamp/duchamp.hh>
33#include <duchamp/param.hh>
34#include <duchamp/Utils/utils.hh>
35#include <duchamp/Utils/feedback.hh>
36#include <duchamp/ATrous/atrous.hh>
37#include <duchamp/ATrous/filter.hh>
38#include <duchamp/Utils/Statistics.hh>
[190]39using Statistics::madfmToSigma;
[3]40
[378]41namespace duchamp
[3]42{
[86]43
[846]44  void atrous1DReconstruct(unsigned long &xdim, float *&input, float *&output, Param &par)
[378]45  {
[528]46    ///  A routine that uses the a trous wavelet method to reconstruct a
47    ///   1-dimensional spectrum.
48    ///  The Param object "par" contains all necessary info about the filter and
49    ///   reconstruction parameters.
50    ///
51    ///  If all pixels are BLANK (and we are testing for BLANKs), the
52    ///  reconstruction will simply give BLANKs back, so we return the
53    ///  input array as the output array.
54    ///
55    ///  \param xdim The length of the spectrum.
56    ///  \param input The input spectrum.
57    ///  \param output The returned reconstructed spectrum. This array needs to
58    ///    be declared beforehand.
59    ///  \param par The Param set.
[3]60
[378]61    const float SNR_THRESH=par.getAtrousCut();
[846]62    const unsigned int MIN_SCALE=par.getMinScale();
[378]63    static bool firstTime = true;
[3]64
[846]65    size_t numScales = par.filter().getNumScales(xdim);
66    size_t maxScale = par.getMaxScale();
[378]67    if((maxScale>0)&&(maxScale<=numScales))
68      maxScale = std::min(maxScale,numScales);
69    else{
70      if((firstTime)&&(maxScale!=0)){
71        firstTime=false;
72        std::stringstream errmsg;
73        errmsg << "The requested value of the parameter scaleMax, \""
74               << maxScale << "\" is outside the allowed range (1-"
75               << numScales <<").\nSetting to " << numScales << ".\n";
76        duchampWarning("Reading parameters",errmsg.str());
77      }
78      maxScale = numScales;
79    }
80    double *sigmaFactors = new double[numScales+1];
[846]81    for(size_t i=0;i<=numScales;i++){
[378]82      if(i<=par.filter().maxFactor(1))
83        sigmaFactors[i] = par.filter().sigmaFactor(1,i);
84      else sigmaFactors[i] = sigmaFactors[i-1] / sqrt(2.);
85    }
[3]86
[378]87    float mean,sigma,originalSigma,originalMean,oldsigma,newsigma;
88    bool *isGood = new bool[xdim];
[846]89    size_t goodSize=0;
90    for(size_t pos=0;pos<xdim;pos++) {
[378]91      isGood[pos] = !par.isBlank(input[pos]);
92      if(isGood[pos]) goodSize++;
93    }
[3]94
[378]95    if(goodSize == 0){
96      // There are no good pixels -- everything is BLANK for some reason.
97      // Return the input array as the output.
[3]98
[846]99      for(size_t pos=0;pos<xdim; pos++) output[pos] = input[pos];
[3]100
[378]101    }
102    else{
103      // Otherwise, all is good, and we continue.
[3]104
105
[378]106      float *coeffs = new float[xdim];
107      float *wavelet = new float[xdim];
[849]108      // float *residual = new float[xdim];
[3]109
[846]110      for(size_t pos=0;pos<xdim;pos++) output[pos]=0.;
[3]111
[378]112      int filterHW = par.filter().width()/2;
113      double *filter = new double[par.filter().width()];
[846]114      for(size_t i=0;i<par.filter().width();i++) filter[i] = par.filter().coeff(i);
[231]115
116
[378]117      // No trimming done in 1D case.
[3]118
[378]119      int iteration=0;
120      newsigma = 1.e9;
121      do{
[231]122        if(par.isVerbose()) {
[378]123          std::cout << "Iteration #"<<++iteration<<":";
124          printSpace(13);
[231]125        }
[378]126        // first, get the value of oldsigma and set it to the previous
127        //   newsigma value
128        oldsigma = newsigma;
129        // all other times round, we are transforming the residual array
[846]130        for(size_t i=0;i<xdim;i++)  coeffs[i] = input[i] - output[i];
[378]131   
[849]132        // findMedianStats(input,xdim,isGood,originalMean,originalSigma);
133        // originalSigma = madfmToSigma(originalSigma);
134        if(par.getFlagRobustStats())
135          originalSigma = madfmToSigma(findMADFM(input,isGood,xdim));
136        else
137          originalSigma = findStddev(input,isGood,xdim);
[231]138
[378]139        int spacing = 1;
[846]140        for(unsigned int scale = 1; scale<=numScales; scale++){
[231]141
[378]142          if(par.isVerbose()) {
143            std::cout << "Scale " << std::setw(2) << scale
144                      << " /"     << std::setw(2) << numScales <<std::flush;
145          }
146
[846]147          for(unsigned long xpos = 0; xpos<xdim; xpos++){
[378]148            // loops over each pixel in the image
[846]149            size_t pos = xpos;
[378]150
151            wavelet[pos] = coeffs[pos];
[3]152       
[378]153            if(!isGood[pos] )  wavelet[pos] = 0.;
154            else{
[3]155
[378]156              for(int xoffset=-filterHW; xoffset<=filterHW; xoffset++){
[846]157                long x = xpos + spacing*xoffset;
[3]158
[846]159                while((x<0)||(x>=long(xdim))){
[378]160                  // boundary conditions are reflection.
161                  if(x<0) x = 0 - x;
[846]162                  else if(x>=long(xdim)) x = 2*(xdim-1) - x;
[378]163                }
[3]164
[846]165                size_t filterpos = (xoffset+filterHW);
166                size_t oldpos = x;
[3]167
[378]168                if(isGood[oldpos])
169                  wavelet[pos] -= filter[filterpos]*coeffs[oldpos];
[3]170             
[378]171              } //-> end of xoffset loop
172            } //-> end of else{ ( from if(!isGood[pos])  )
[3]173           
[378]174          } //-> end of xpos loop
[3]175
[378]176          // Need to do this after we've done *all* the convolving
[846]177          for(size_t pos=0;pos<xdim;pos++) coeffs[pos] = coeffs[pos] - wavelet[pos];
[3]178
[378]179          // Have found wavelet coeffs for this scale -- now threshold
180          if(scale>=MIN_SCALE){
[849]181            //      findMedianStats(wavelet,xdim,isGood,mean,sigma);
182            if(par.getFlagRobustStats())
183              mean = findMedian(wavelet,isGood,xdim);
184            else
185              mean = findMean(wavelet,isGood,xdim);
[3]186       
[846]187            for(size_t pos=0;pos<xdim;pos++){
[378]188              // preserve the Blank pixel values in the output.
189              if(!isGood[pos]) output[pos] = input[pos];
190              else if( fabs(wavelet[pos]) >
191                       (mean+SNR_THRESH*originalSigma*sigmaFactors[scale]) )
192                output[pos] += wavelet[pos];
193            }
[231]194          }
[3]195 
[378]196          spacing *= 2;
[3]197
[378]198        } //-> end of scale loop
[3]199
[378]200        // Only add the final smoothed array if we are doing *all* the scales.
201        if(numScales == par.filter().getNumScales(xdim))
[846]202          for(size_t pos=0;pos<xdim;pos++)
[378]203            if(isGood[pos]) output[pos] += coeffs[pos];
[3]204
[849]205        // for(size_t pos=0;pos<xdim;pos++) residual[pos]=input[pos]-output[pos];
206        // findMedianStats(residual,xdim,isGood,mean,newsigma);
207        // newsigma = madfmToSigma(newsigma);
208        if(par.getFlagRobustStats())
209          newsigma = madfmToSigma(findMADFMDiff(input,output,isGood,xdim));
210        else
211          newsigma = findStddevDiff(input,output,isGood,xdim);
[3]212
[378]213        if(par.isVerbose()) printBackSpace(26);
[3]214
[378]215      } while( (iteration==1) ||
216               (fabs(oldsigma-newsigma)/newsigma > reconTolerance) );
[3]217
[378]218      if(par.isVerbose()) std::cout << "Completed "<<iteration<<" iterations. ";
[3]219
[378]220      delete [] filter;
[849]221      // delete [] residual;
[650]222      delete [] wavelet;
[378]223      delete [] coeffs;
[231]224
[378]225    }
226
227    delete [] isGood;
228    delete [] sigmaFactors;
[231]229  }
230
[3]231}
Note: See TracBrowser for help on using the repository browser.