source: trunk/src/ATrous/atrous_2d_reconstruct.cc @ 884

Last change on this file since 884 was 884, checked in by MatthewWhiting, 12 years ago

A large set of changes aimed at making the use of indexing variables consistent. We have moved to size_t as much as possible to represent the location in memory. This includes making the dimension array within DataArray? and derived classes an array of size_t variables. Still plenty of compilation warnings (principally comparing signed and unsigned variables) - these will need to be cleaned up.

File size: 9.8 KB
RevLine 
[299]1// -----------------------------------------------------------------------
2// atrous_2d_reconstruct.cc: 2-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>
29#include <iomanip>
30#include <math.h>
[393]31#include <duchamp/duchamp.hh>
32#include <duchamp/param.hh>
33#include <duchamp/ATrous/atrous.hh>
34#include <duchamp/ATrous/filter.hh>
35#include <duchamp/Utils/utils.hh>
36#include <duchamp/Utils/feedback.hh>
37#include <duchamp/Utils/Statistics.hh>
[190]38using Statistics::madfmToSigma;
[3]39
[378]40namespace duchamp
[3]41{
[86]42
[846]43  void atrous2DReconstruct(unsigned long &xdim, unsigned long &ydim, float *&input, float *&output, Param &par)
[378]44  {
[528]45    ///  A routine that uses the a trous wavelet method to reconstruct a
46    ///   2-dimensional image.
47    ///
48    ///  If there are no non-BLANK pixels (and we are testing for
49    ///  BLANKs), the reconstruction cannot be done, so we return the
50    ///  input array as the output array and give a warning message.
51    ///
52    ///  \param xdim The length of the x-axis of the image.
53    ///  \param ydim The length of the y-axis of the image.
54    ///  \param input The input spectrum.
55    ///  \param output The returned reconstructed spectrum. This array
56    ///  needs to be declared beforehand.
57    ///  \param par The Param set:contains all necessary info about the
58    ///  filter and reconstruction parameters.
[3]59
[846]60    size_t size = xdim * ydim;
61    unsigned long mindim = xdim;
[378]62    if (ydim<mindim) mindim = ydim;
[884]63    unsigned int numScales = par.filter().getNumScales(mindim);
[378]64    double *sigmaFactors = new double[numScales+1];
[846]65    for(size_t i=0;i<=numScales;i++){
[378]66      if(i<=par.filter().maxFactor(2))
67        sigmaFactors[i] = par.filter().sigmaFactor(2,i);
68      else sigmaFactors[i] = sigmaFactors[i-1] / 2.;
69    }
[231]70
[378]71    float mean,sigma,originalSigma,originalMean,oldsigma,newsigma;
[846]72    size_t goodSize=0;
[378]73    bool *isGood = new bool[size];
[846]74    for(size_t pos=0;pos<size;pos++){
[378]75      isGood[pos] = !par.isBlank(input[pos]);
76      if(isGood[pos]) goodSize++;
77    }
[231]78
[378]79    if(goodSize == 0){
80      // There are no good pixels -- everything is BLANK for some reason.
81      // Return the input array as the output, and give a warning message.
[231]82
[846]83      for(size_t pos=0;pos<size; pos++) output[pos] = input[pos];
[378]84
85      duchampWarning("2D Reconstruction","\
[275]86There are no good pixels to be reconstructed -- all are BLANK.\n\
87Returning input array.\n");
[378]88    }
89    else{
90      // Otherwise, all is good, and we continue.
[231]91
[849]92      //      findMedianStats(input,goodSize,isGood,originalMean,originalSigma);
93      // originalSigma = madfmToSigma(originalSigma);
94      if(par.getFlagRobustStats())
95        originalSigma = madfmToSigma(findMADFM(input,isGood,size));
96      else
97        originalSigma = findStddev(input,isGood,size);
[3]98 
[378]99      float *coeffs    = new float[size];
100      float *wavelet   = new float[size];
[849]101      // float *residual  = new float[size];
[3]102
[846]103      for(size_t pos=0;pos<size;pos++) output[pos]=0.;
[3]104
[846]105      unsigned int filterwidth = par.filter().width();
[378]106      int filterHW = filterwidth/2;
107      double *filter = new double[filterwidth*filterwidth];
[846]108      for(size_t i=0;i<filterwidth;i++){
109        for(size_t j=0;j<filterwidth;j++){
[378]110          filter[i*filterwidth+j] = par.filter().coeff(i) * par.filter().coeff(j);
111        }
[231]112      }
[3]113
[846]114      long *xLim1 = new long[ydim];
115      for(size_t i=0;i<ydim;i++) xLim1[i] = 0;
116      long *yLim1 = new long[xdim];
117      for(size_t i=0;i<xdim;i++) yLim1[i] = 0;
118      long *xLim2 = new long[ydim];
119      for(size_t i=0;i<ydim;i++) xLim2[i] = xdim-1;
120      long *yLim2 = new long[xdim];
121      for(size_t i=0;i<xdim;i++) yLim2[i] = ydim-1;
[3]122
[378]123      if(par.getFlagBlankPix()){
124        float avGapX = 0, avGapY = 0;
[846]125        for(size_t row=0;row<ydim;row++){
126          size_t ct1 = 0;
127          size_t ct2 = xdim - 1;
[378]128          while((ct1<ct2)&&(par.isBlank(input[row*xdim+ct1]))) ct1++;
129          while((ct2>ct1)&&(par.isBlank(input[row*xdim+ct2]))) ct2--;
130          xLim1[row] = ct1;
131          xLim2[row] = ct2;
132          avGapX += ct2 - ct1;
133        }
134        avGapX /= float(ydim);
[103]135   
[846]136        for(size_t col=0;col<xdim;col++){
137          size_t ct1=0;
138          size_t ct2=ydim-1;
[378]139          while((ct1<ct2)&&(par.isBlank(input[col+xdim*ct1]))) ct1++;
140          while((ct2>ct1)&&(par.isBlank(input[col+xdim*ct2]))) ct2--;
141          yLim1[col] = ct1;
142          yLim2[col] = ct2;
143          avGapY += ct2 - ct1;
144        }
145        avGapY /= float(xdim);
[103]146   
[862]147        // if(avGapX < mindim) mindim = int(avGapX);
148        // if(avGapY < mindim) mindim = int(avGapY);
149        // numScales = par.filter().getNumScales(mindim);
[3]150      }
151
[378]152      float threshold;
153      int iteration=0;
154      newsigma = 1.e9;
[846]155      for(size_t i=0;i<size;i++) output[i] = 0;
[378]156      do{
157        if(par.isVerbose()) {
158          std::cout << "Iteration #"<<std::setw(2)<<++iteration<<":";
[231]159          printBackSpace(13);
160        }
161
[378]162        // first, get the value of oldsigma and set it to the previous
163        //   newsigma value
164        oldsigma = newsigma;
165        // we are transforming the residual array
[846]166        for(size_t i=0;i<size;i++)  coeffs[i] = input[i] - output[i]; 
[378]167
168        int spacing = 1;
[846]169        for(unsigned int scale = 1; scale<numScales; scale++){
[378]170
171          if(par.isVerbose()){
172            std::cout << "Scale ";
173            std::cout << std::setw(2)<<scale<<" / "<<std::setw(2)<<numScales;
174            printBackSpace(13);
175            std::cout <<std::flush;
176          }
177
[846]178          for(unsigned long ypos = 0; ypos<ydim; ypos++){
179            for(unsigned long xpos = 0; xpos<xdim; xpos++){
[378]180              // loops over each pixel in the image
[846]181              size_t pos = ypos*xdim + xpos;
[3]182         
[378]183              wavelet[pos] = coeffs[pos];
[3]184
[378]185              if(!isGood[pos]) wavelet[pos] = 0.;
186              else{
[3]187
[846]188                size_t filterpos = -1;
[378]189                for(int yoffset=-filterHW; yoffset<=filterHW; yoffset++){
[846]190                  long y = long(ypos) + spacing*yoffset;
[231]191                  // Boundary conditions -- assume reflection at boundaries.
192                  // Use limits as calculated above
[378]193                  //          if(yLim1[xpos]!=yLim2[xpos]){
194                  //            // if these are equal we will get into an infinite loop here
195                  //            while((y<yLim1[xpos])||(y>yLim2[xpos])){
196                  //              if(y<yLim1[xpos]) y = 2*yLim1[xpos] - y;     
197                  //              else if(y>yLim2[xpos]) y = 2*yLim2[xpos] - y;     
[231]198                  //            }
[378]199                  //          }
[846]200                  size_t oldrow = y * xdim;
[378]201         
202                  for(int xoffset=-filterHW; xoffset<=filterHW; xoffset++){
[846]203                    long x = long(xpos) + spacing*xoffset;
[378]204                    // Boundary conditions -- assume reflection at boundaries.
205                    // Use limits as calculated above
206                    //          if(xLim1[ypos]!=xLim2[ypos]){
207                    //            // if these are equal we will get into an infinite loop here
208                    //            while((x<xLim1[ypos])||(x>xLim2[ypos])){
209                    //              if(x<xLim1[ypos]) x = 2*xLim1[ypos] - x;     
210                    //              else if(x>xLim2[ypos]) x = 2*xLim2[ypos] - x;     
211                    //            }
212                    //          }
[3]213
[846]214                    size_t oldpos = oldrow + x;
[3]215
[378]216                    float oldCoeff;
217                    if((y>=yLim1[xpos])&&(y<=yLim2[xpos])&&
218                       (x>=xLim1[ypos])&&(x<=xLim2[ypos])  )
219                      oldCoeff = coeffs[oldpos];
220                    else oldCoeff = 0.;
[3]221
[378]222                    filterpos++;
[3]223
[378]224                    if(isGood[pos]) wavelet[pos] -= filter[filterpos] * oldCoeff;
225                    //            wavelet[pos] -= filter[filterpos] * coeffs[oldpos];
[103]226
[378]227                  } //-> end of xoffset loop
228                } //-> end of yoffset loop
229              } //-> end of else{ ( from if(!isGood[pos])  )
[3]230       
[378]231            } //-> end of xpos loop
232          } //-> end of ypos loop
[3]233
[378]234          // Need to do this after we've done *all* the convolving
[846]235          for(size_t pos=0;pos<size;pos++) coeffs[pos] = coeffs[pos] - wavelet[pos];
[3]236
[378]237          // Have found wavelet coeffs for this scale -- now threshold   
238          if(scale>=par.getMinScale()){
[849]239            //      findMedianStats(wavelet,goodSize,isGood,mean,sigma);
240            if(par.getFlagRobustStats())
241              mean = findMedian(wavelet,isGood,size);
242            else
243              mean= findMean(wavelet,isGood,size);
[3]244
[378]245            threshold = mean +
246              par.getAtrousCut() * originalSigma * sigmaFactors[scale];
[846]247            for(size_t pos=0;pos<size;pos++){
[378]248              if(!isGood[pos]) output[pos] = input[pos];
249              // preserve the Blank pixel values in the output.
250              else if( fabs(wavelet[pos]) > threshold )
251                output[pos] += wavelet[pos];
252            }
[231]253          }
[378]254          spacing *= 2;
[3]255
[378]256        } // END OF LOOP OVER SCALES
[3]257
[846]258        for(size_t pos=0;pos<size;pos++) if(isGood[pos]) output[pos] += coeffs[pos];
[3]259
[849]260        // for(size_t i=0;i<size;i++) residual[i] = input[i] - output[i];
261        // findMedianStats(residual,goodSize,isGood,mean,newsigma);
262        // findMedianStatsDiff(input,output,size,isGood,mean,newsigma);
263        // newsigma = madfmToSigma(newsigma);
264        if(par.getFlagRobustStats())
265          newsigma = madfmToSigma(findMADFMDiff(input,output,isGood,size));
266        else
267          newsigma = findStddevDiff(input,output,isGood,size);
268
[378]269        if(par.isVerbose()) printBackSpace(15);
[3]270
[378]271      } while( (iteration==1) ||
272               (fabs(oldsigma-newsigma)/newsigma > reconTolerance) );
[3]273
[378]274      if(par.isVerbose()) std::cout << "Completed "<<iteration<<" iterations. ";
[3]275
[378]276      delete [] xLim1;
277      delete [] xLim2;
278      delete [] yLim1;
279      delete [] yLim2;
280      delete [] filter;
281      delete [] coeffs;
282      delete [] wavelet;
[849]283      // delete [] residual;
[231]284
[378]285    }
286
287    delete [] isGood;
288    delete [] sigmaFactors;
[231]289  }
[378]290   
[3]291}
Note: See TracBrowser for help on using the repository browser.