ParaView
vtkImageFileSeriesReader.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: vtkImageFileSeriesReader.h
5 
6  Copyright (c) Kitware, Inc.
7  All rights reserved.
8  See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
28 #ifndef vtkImageFileSeriesReader_h
29 #define vtkImageFileSeriesReader_h
30 
31 #include "vtkFileSeriesReader.h"
32 
33 class VTKPVVTKEXTENSIONSDEFAULT_EXPORT vtkImageFileSeriesReader : public vtkFileSeriesReader
34 {
35 public:
36  static vtkImageFileSeriesReader* New();
38  void PrintSelf(ostream& os, vtkIndent indent);
39 
40  vtkSetMacro(ReadAsImageStack, bool);
41  vtkGetMacro(ReadAsImageStack, bool);
42  vtkBooleanMacro(ReadAsImageStack, bool);
43 
48  virtual int ProcessRequest(vtkInformation*, vtkInformationVector**, vtkInformationVector*);
49 
50 protected:
53 
54  void UpdateFileNames();
55 
57 
58 private:
59  vtkImageFileSeriesReader(const vtkImageFileSeriesReader&) VTK_DELETE_FUNCTION;
60  void operator=(const vtkImageFileSeriesReader&) VTK_DELETE_FUNCTION;
61 };
62 
63 #endif
virtual int ProcessRequest(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
All pipeline passes are forwarded to the internal reader.
void PrintSelf(ostream &os, vtkIndent indent)
meta-reader to read file series
adds support for optionally reading image stacks.
static vtkFileSeriesReader * New()