SimpleITK  1.0.1
sitkJoinSeriesImageFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 *
3 * Copyright Insight Software Consortium
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0.txt
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 *=========================================================================*/
18 #ifndef sitkJoinSeriesImageFilter_h
19 #define sitkJoinSeriesImageFilter_h
20 
21 /*
22  * WARNING: DO NOT EDIT THIS FILE!
23  * THIS FILE IS AUTOMATICALLY GENERATED BY THE SIMPLEITK BUILD PROCESS.
24  * Please look at sitkMultiInputImageFilterTemplate.h.in to make changes.
25  */
26 
27 #include <memory>
28 
29 #include "sitkBasicFilters.h"
30 #include "sitkImageFilter.h"
31 
32 namespace itk {
33  namespace simple {
34 
48  : public ImageFilter<3>
49  {
50  public:
52 
56 
59 
62 
63 
64 
65 
69  SITK_RETURN_SELF_TYPE_HEADER SetOrigin ( double Origin ) { this->m_Origin = Origin; return *this; }
70 
74  double GetOrigin() const { return this->m_Origin; }
75 
79  SITK_RETURN_SELF_TYPE_HEADER SetSpacing ( double Spacing ) { this->m_Spacing = Spacing; return *this; }
80 
84  double GetSpacing() const { return this->m_Spacing; }
86  std::string GetName() const { return std::string ("JoinSeriesImageFilter"); }
87 
89  std::string ToString() const;
90 
92  Image Execute ( const std::vector<Image> &images);
93  Image Execute ( const Image& image1 );
94  Image Execute ( const Image& image1, const Image& image2 );
95  Image Execute ( const Image& image1, const Image& image2, const Image& image3 );
96  Image Execute ( const Image& image1, const Image& image2, const Image& image3, const Image& image4 );
97  Image Execute ( const Image& image1, const Image& image2, const Image& image3, const Image& image4, const Image& image5 );
98 
99 
100 
102  Image Execute ( const std::vector<Image> &images, double origin, double spacing );
103  Image Execute ( const Image& image1, double origin, double spacing );
104  Image Execute ( const Image& image1, const Image& image2, double origin, double spacing );
105  Image Execute ( const Image& image1, const Image& image2, const Image& image3, double origin, double spacing );
106  Image Execute ( const Image& image1, const Image& image2, const Image& image3, const Image& image4, double origin, double spacing );
107  Image Execute ( const Image& image1, const Image& image2, const Image& image3, const Image& image4, const Image& image5, double origin, double spacing );
108 
109 
110 
111 
112  private:
113 
116  typedef Image (Self::*MemberFunctionType)( const std::vector<Image> & );
117  template <class TImageType> Image ExecuteInternal ( const std::vector<Image> &images );
118 
119 
120 
121  friend struct detail::MemberFunctionAddressor<MemberFunctionType>;
122 
123  nsstd::auto_ptr<detail::MemberFunctionFactory<MemberFunctionType> > m_MemberFactory;
124 
125 
126  double m_Origin;
127  double m_Spacing;
128  };
129 
130 
140  SITKBasicFilters_EXPORT Image JoinSeries ( const std::vector<Image> &images , double origin = 0.0, double spacing = 1.0 );
141 
142  SITKBasicFilters_EXPORT Image JoinSeries ( const Image& image1, double origin = 0.0, double spacing = 1.0 );
143  SITKBasicFilters_EXPORT Image JoinSeries ( const Image& image1, const Image& image2, double origin = 0.0, double spacing = 1.0 );
144  SITKBasicFilters_EXPORT Image JoinSeries ( const Image& image1, const Image& image2, const Image& image3, double origin = 0.0, double spacing = 1.0 );
145  SITKBasicFilters_EXPORT Image JoinSeries ( const Image& image1, const Image& image2, const Image& image3, const Image& image4, double origin = 0.0, double spacing = 1.0 );
146  SITKBasicFilters_EXPORT Image JoinSeries ( const Image& image1, const Image& image2, const Image& image3, const Image& image4, const Image& image5, double origin = 0.0, double spacing = 1.0 );
147 
150 }
151 }
152 #endif
typelist::Append< typelist::Append< BasicPixelIDTypeList, ComplexPixelIDTypeList >::Type, VectorPixelIDTypeList >::Type NonLabelPixelIDTypeList
#define SITKBasicFilters_EXPORT
nsstd::auto_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
Join N-D images into an (N+1)-D image.
The main Image class for SimpleITK.
Definition: sitkImage.h:54
Image JoinSeries(const std::vector< Image > &images, double origin=0.0, double spacing=1.0)
Join N-D images into an (N+1)-D image.
The base interface for SimpleITK filters that take one input image.