/usr/include/InsightToolkit/IO/itkImageSeriesWriter.h is in libinsighttoolkit3-dev 3.20.1+git20120521-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 | /*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: itkImageSeriesWriter.h
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Insight Software Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#ifndef __itkImageSeriesWriter_h
#define __itkImageSeriesWriter_h
#include "itkProcessObject.h"
#include "itkImageIOBase.h"
#include "itkExceptionObject.h"
#include "itkSize.h"
#include "itkImageRegion.h"
#include "itkImageFileWriter.h"
#include <vector>
#include <string>
namespace itk
{
/** \class ImageSeriesWriterException
* \brief Base exception class for IO problems during writing. */
class ImageSeriesWriterException : public ExceptionObject
{
public:
/** Run-time information. */
itkTypeMacro( ImageSeriesWriterException, ExceptionObject );
/** Constructor. */
ImageSeriesWriterException(char *file, unsigned int line,
const char* message = "Error in IO") :
ExceptionObject(file, line)
{
SetDescription(message);
}
/** Constructor. */
ImageSeriesWriterException(const std::string &file, unsigned int line,
const char* message = "Error in IO") :
ExceptionObject(file, line)
{
SetDescription(message);
}
};
/** \class ImageSeriesWriter
* \brief Writes image data to a series of data files.
*
* ImageSeriesWriter writes its input data to a series of output files.
* The writer is templated over an input image type and an output
* image type. Usually, the output image type will have fewer
* dimensions than the input image type. Each file has a name created
* using the SeriesFormat. This string is used as a sprintf argument
* to build a filename. The string should contain zero or one "%d" or
* equivalent. The "%d" is an incremental file number that starts at
* StartIndex and is incremented by IncrementIndex.
* Since this writer uses an internal instance of an ImageFileWriter,
* the type of file is determined by either the file extension or an
* ImageIO class if specified.
*
* \sa ImageFileWriter
* \sa ImageIOBase
* \sa ImageSeriesReader
*
* \ingroup IOFilters
*/
template <class TInputImage, class TOutputImage>
class ITK_EXPORT ImageSeriesWriter : public ProcessObject
{
public:
/** Standard class typedefs. */
typedef ImageSeriesWriter Self;
typedef ProcessObject Superclass;
typedef SmartPointer<Self> Pointer;
typedef SmartPointer<const Self> ConstPointer;
/** Method for creation through the object factory. */
itkNewMacro(Self);
/** Run-time type information (and related methods). */
itkTypeMacro(ImageSeriesWriter,ProcessObject);
/** Some convenient typedefs. */
typedef TInputImage InputImageType;
typedef typename InputImageType::RegionType InputImageRegionType;
typedef TOutputImage OutputImageType;
typedef typename OutputImageType::RegionType OutputImageRegionType;
typedef ImageFileWriter<TOutputImage> WriterType;
typedef std::vector< std::string > FileNamesContainer;
/** The pixel type of the output image. */
typedef MetaDataDictionary DictionaryType;
typedef MetaDataDictionary * DictionaryRawPointer;
typedef std::vector< DictionaryRawPointer > DictionaryArrayType;
typedef const DictionaryArrayType * DictionaryArrayRawPointer;
/** Set/Get the image input of this writer. */
void SetInput(const InputImageType *input);
const InputImageType *GetInput(void);
const InputImageType *GetInput(unsigned int idx);
/** Set/Get the ImageIO helper class. Usually this is created via
* the object factory mechanism that determines whether a particular
* ImageIO can write a certain file. This method provides a way to
* get the ImageIO instance that is created, or to manually set one
* when the factory mechanism may not work (e.g., for raw files or
* for non-standard file suffix). */
itkSetObjectMacro(ImageIO,ImageIOBase);
itkGetObjectMacro(ImageIO,ImageIOBase);
/** A special version of the Update() method for writers. It
* invokes start and end events and handles releasing data. It
* eventually calls GenerateData() which does the actual writing.
* The whole image is written. */
virtual void Write(void);
/** Aliased to the Write() method to be consistent with the rest of the
* pipeline. */
virtual void Update()
{
this->Write();
}
/** Use this method to set the starting index of the series.
* The default value is 1. */
itkSetMacro(StartIndex,unsigned long);
itkGetConstMacro(StartIndex,unsigned long);
/** Set the increment of the index of the series. The
* default value is 1. */
itkSetMacro(IncrementIndex,unsigned long);
itkGetConstMacro(IncrementIndex,unsigned long);
/** The format string used to generate each filename in the
* series. The filename is built with sprintf(filename, SeriesFormat,
* number) where number starts at StartIndex and is incremented by
* IncrementIndex. */
itkSetStringMacro(SeriesFormat);
itkGetStringMacro(SeriesFormat);
/** Set/Get the vector of strings that contains the file names. Files
* are processed in sequential order. */
void SetFileNames (const FileNamesContainer &name)
{
if ( m_FileNames != name)
{
m_FileNames = name;
this->Modified();
}
}
const FileNamesContainer & GetFileNames() const
{
return m_FileNames;
}
/** Set the first file name to be processed. This deletes previous
* filenames. */
void SetFileName (std::string const &name)
{
m_FileNames.clear();
m_FileNames.push_back(name);
this->Modified();
}
/** Add a single filename to the list of files. To add a vector of
* filenames, use the AddFileNames method. */
void AddFileName (std::string const &name)
{
m_FileNames.push_back(name);
this->Modified();
}
/** Set the array of MetaDataDictionaries this is an optinal entry,
* mostly intended to be used when writing DICOM slices. */
itkSetMacro( MetaDataDictionaryArray, DictionaryArrayRawPointer);
/** Set the compression On or Off */
itkSetMacro(UseCompression,bool);
itkGetConstReferenceMacro(UseCompression,bool);
itkBooleanMacro(UseCompression);
protected:
ImageSeriesWriter();
~ImageSeriesWriter();
void PrintSelf(std::ostream& os, Indent indent) const;
/** Does the real work. */
void GenerateData(void);
/** Transition method used for DEPRECATING old functionality.
* This method should be removed after release ITK 1.8 */
void GenerateNumericFileNamesAndWrite(void);
ImageIOBase::Pointer m_ImageIO;
bool m_UserSpecifiedImageIO; //track whether the ImageIO is
// user specified
private:
ImageSeriesWriter(const Self&); //purposely not implemented
void operator=(const Self&); //purposely not implemented
/** A list of filenames to be processed. */
FileNamesContainer m_FileNames;
/** These variables are used for generating filenames using a numeric
* approach This functionality is being DEPRECATED since it belongs to a
* NumericSeriesFileNames class. Removing this functionality from here allows
* to use additional SeriesFileNames such as the DICOM filenames generators.
* */
std::string m_SeriesFormat;
unsigned long m_StartIndex;
unsigned long m_IncrementIndex;
bool m_UseCompression;
/** Array of MetaDataDictionary used for passing information to each slice */
DictionaryArrayRawPointer m_MetaDataDictionaryArray;
// These two methods provide now a common implementation for the
// GenerateNumericFileNamesAndWrite() and avoid the duplication of code that
// was leaving one of the code branches out of date.
void GenerateNumericFileNames(void);
void WriteFiles();
};
} // end namespace itk
#ifndef ITK_MANUAL_INSTANTIATION
#include "itkImageSeriesWriter.txx"
#endif
#endif // __itkImageSeriesWriter_h
|