SimpleITK  1.0.1
sitkImageSeriesWriter.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 sitkImageSeriesWriter_h
19 #define sitkImageSeriesWriter_h
20 
21 #include "sitkMacro.h"
22 #include "sitkImage.h"
23 #include "sitkProcessObject.h"
24 #include "sitkIO.h"
26 
27 namespace itk {
28  namespace simple {
29 
46  : public ProcessObject
47  {
48  public:
50 
52 
54  virtual std::string ToString() const;
55 
57  virtual std::string GetName() const { return std::string("ImageSeriesWriter"); }
58 
65  SITK_RETURN_SELF_TYPE_HEADER SetUseCompression( bool UseCompression );
66  bool GetUseCompression( void ) const;
67 
68  SITK_RETURN_SELF_TYPE_HEADER UseCompressionOn( void ) { return this->SetUseCompression(true); }
69  SITK_RETURN_SELF_TYPE_HEADER UseCompressionOff( void ) { return this->SetUseCompression(false); }
77  SITK_RETURN_SELF_TYPE_HEADER SetFileNames ( const std::vector<std::string> &fileNames );
78  const std::vector<std::string> &GetFileNames() const;
82  SITK_RETURN_SELF_TYPE_HEADER Execute( const Image& );
83  SITK_RETURN_SELF_TYPE_HEADER Execute( const Image &image, const std::vector<std::string> &inFileNames, bool inUseCompression );
84 
85  protected:
86 
87  template <class TImageType> Self &ExecuteInternal ( const Image& inImage );
88 
89  private:
90 
91  // function pointer type
92  typedef Self& (Self::*MemberFunctionType)( const Image& );
93 
94  // friend to get access to executeInternal member
95  friend struct detail::MemberFunctionAddressor<MemberFunctionType>;
96  nsstd::auto_ptr<detail::MemberFunctionFactory<MemberFunctionType> > m_MemberFactory;
97 
99  std::vector<std::string> m_FileNames;
100  };
101 
102  SITKIO_EXPORT void WriteImage ( const Image & image, const std::vector<std::string> &fileNames, bool inUseCompression=false );
103  }
104 }
105 
106 #endif
std::vector< std::string > m_FileNames
SITKIO_EXPORT void WriteImage(const Image &image, const std::string &fileName, bool useCompression=false)
Self & UseCompressionOff(void)
Enable compression if available for file type.
Self &(Self::* MemberFunctionType)(const Image &)
virtual std::string GetName() const
Writer series of image from a SimpleITK image.
#define SITKIO_EXPORT
Definition: sitkIO.h:34
nsstd::auto_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
The main Image class for SimpleITK.
Definition: sitkImage.h:54
Self & UseCompressionOn(void)
Enable compression if available for file type.
Base class for SimpleITK classes based on ProcessObject.