Basic Image AlgorithmS Library  2.8.0
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
FilterNTo3N.cpp
1 /*
2 This file is part of the BIAS library (Basic ImageAlgorithmS).
3 
4 Copyright (C) 2003-2009 (see file CONTACT for details)
5  Multimediale Systeme der Informationsverarbeitung
6  Institut fuer Informatik
7  Christian-Albrechts-Universitaet Kiel
8 
9 
10 BIAS is free software; you can redistribute it and/or modify
11 it under the terms of the GNU Lesser General Public License as published by
12 the Free Software Foundation; either version 2.1 of the License, or
13 (at your option) any later version.
14 
15 BIAS is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU Lesser General Public License for more details.
19 
20 You should have received a copy of the GNU Lesser General Public License
21 along with BIAS; if not, write to the Free Software
22 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 */
24 
25 
26 #include "FilterNTo3N.hh"
27 
28 #include <Base/Common/BIASpragma.hh>
29 
30 using namespace BIAS;
31 using namespace std;
32 
33 template <class InputStorageType, class OutputStorageType>
36 FilterBase<InputStorageType, OutputStorageType>(){
37 }
38 
39 template <class InputStorageType, class OutputStorageType>
42 {
43 }
44 
45 template <class InputStorageType, class OutputStorageType>
47 }
48 
49 template <class InputStorageType, class OutputStorageType>
53  BIASERR("empty");
54  return -1;
55 }
56 
57 template <class InputStorageType, class OutputStorageType>
61  BIASERR("empty");
62  return -1;
63 }
64 
65 template <class InputStorageType, class OutputStorageType>
69  BIASERR("empty");
70  return -1;
71 }
72 
73 template <class InputStorageType, class OutputStorageType>
79  BIASERR("empty");
80  return -1;
81 }
82 
83 template <class InputStorageType, class OutputStorageType>
89  BIASERR("empty");
90  return -1;
91 }
92 
93 template <class InputStorageType, class OutputStorageType>
99  BIASERR("empty");
100  return -1;
101 }
102 
103 namespace BIAS{
104 #define FILTER_INSTANTIATION_CLASS FilterNTo3N
105 #define FILTER_INSTANTIATION_NO_UNSIGNED_OUTPUT
106 #include "Filterinst.hh"
107 }
virtual ~FilterNTo3N()
Definition: FilterNTo3N.cpp:46
virtual int Filter(const Image< InputStorageType > &src, Image< OutputStorageType > &dst)
dst.GetChannelCount()==3*src.GetCHannelCount()
Definition: FilterNTo3N.cpp:51
virtual int FilterInt(const Image< InputStorageType > &src, Image< OutputStorageType > &dst)
Definition: FilterNTo3N.cpp:59
virtual parent class for API definition of all (future) filters
Definition: FilterBase.hh:77
virtual int FilterFloat(const Image< InputStorageType > &src, Image< OutputStorageType > &dst)
Definition: FilterNTo3N.cpp:67
base class for simple n-&gt;3n filter implementations
Definition: FilterNTo3N.hh:43