source: tags/release-1.1/src/ATrous/atrous.hh @ 1391

Last change on this file since 1391 was 299, checked in by Matthew Whiting, 17 years ago

Adding distribution text at the start of each file...

File size: 2.4 KB
Line 
1// -----------------------------------------------------------------------
2// atrous.hh: Definitions for 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// -----------------------------------------------------------------------
28#ifndef ATROUS_H
29#define ATROUS_H
30
31class Param;
32
33const float reconTolerance = 0.005; ///< The tolerance in the reconstruction.
34
35
36/////////////////////////////////////////////////////////////////////////
37
38/** Perform a 1-dimensional a trous wavelet reconstruction. */
39void atrous1DReconstruct(long &size, float *&input,
40                         float *&output, Param &par);
41
42/** Perform a 2-dimensional a trous wavelet reconstruction. */
43void atrous2DReconstruct(long &xdim, long &ydim, float *&input,
44                         float *&output, Param &par);
45
46/** Perform a 3-dimensional a trous wavelet reconstruction. */
47void atrous3DReconstruct(long &xdim, long &ydim, long &zdim,
48                         float *&input,float *&output, Param &par);
49
50/** Subtract a baseline from a set of spectra in a cube. */
51void baselineSubtract(long numSpec, long specLength,
52                      float *originalCube, float *baseline, Param &par);
53
54/** Find the baseline of a 1-D spectrum. */
55void getBaseline(long size, float *input, float *baseline, Param &par);
56
57/** Find the baseline of a 1-D spectrum. */
58void getBaseline(long size, float *input, float *baseline);
59
60#endif
Note: See TracBrowser for help on using the repository browser.