source: tags/release-1.6.1/src/ATrous/FilterFactory.cc

Last change on this file was 1343, checked in by MatthewWhiting, 10 years ago

Fixing capitalisation of header file.

File size: 2.0 KB
Line 
1// -----------------------------------------------------------------------
2// FilterFactory.hh: Factory method for obtaining a Filter
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#include <duchamp/duchamp.hh>
29#include <duchamp/ATrous/FilterFactory.hh>
30#include <duchamp/ATrous/filter.hh>
31#include <duchamp/ATrous/B3SplineFilter.hh>
32#include <duchamp/ATrous/TriangleFilter.hh>
33#include <duchamp/ATrous/HaarFilter.hh>
34
35namespace duchamp {
36
37    Filter *FilterFactory::getFilter(unsigned int code)
38    {
39        Filter *filt=0;
40        if (code == 2){
41            TriangleFilter *tri = new TriangleFilter;
42            filt = &(*tri);
43        }
44        else if(code == 3){
45            HaarFilter *haar = new HaarFilter;
46            filt = &(*haar);
47        }
48        else{
49            if(code!=1)
50                DUCHAMPWARN("Wavelet Filter", "Filter code " << code << " undefined. Using B3 spline.");
51            B3SplineFilter *b3 = new B3SplineFilter;
52            filt = &(*b3);
53        }
54        return filt;
55
56
57    }
58
59
60
61}
Note: See TracBrowser for help on using the repository browser.