VTK
vtkImageReader.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImageReader.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm 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 =========================================================================*/
33 #ifndef vtkImageReader_h
34 #define vtkImageReader_h
35 
36 #include "vtkIOImageModule.h" // For export macro
37 #include "vtkImageReader2.h"
38 
39 class vtkTransform;
40 
41 #define VTK_FILE_BYTE_ORDER_BIG_ENDIAN 0
42 #define VTK_FILE_BYTE_ORDER_LITTLE_ENDIAN 1
43 
44 class VTKIOIMAGE_EXPORT vtkImageReader : public vtkImageReader2
45 {
46 public:
47  static vtkImageReader *New();
49  void PrintSelf(ostream& os, vtkIndent indent);
50 
52 
56  vtkSetVector6Macro(DataVOI,int);
57  vtkGetVector6Macro(DataVOI,int);
59 
61 
68  vtkGetMacro(DataMask, vtkTypeUInt64);
69  vtkSetMacro(DataMask, vtkTypeUInt64);
71 
73 
78  virtual void SetTransform(vtkTransform*);
79  vtkGetObjectMacro(Transform,vtkTransform);
81 
82  // Warning !!!
83  // following should only be used by methods or template helpers, not users
84  void ComputeInverseTransformedExtent(int inExtent[6],
85  int outExtent[6]);
86  void ComputeInverseTransformedIncrements(vtkIdType inIncr[3],
87  vtkIdType outIncr[3]);
88 
89  int OpenAndSeekFile(int extent[6], int slice);
90 
92 
95  vtkSetStringMacro(ScalarArrayName);
96  vtkGetStringMacro(ScalarArrayName);
98 
99 protected:
100  vtkImageReader();
101  ~vtkImageReader();
102 
103  vtkTypeUInt64 DataMask;
104 
106 
107  void ComputeTransformedSpacing (double Spacing[3]);
108  void ComputeTransformedOrigin (double origin[3]);
109  void ComputeTransformedExtent(int inExtent[6],
110  int outExtent[6]);
111  void ComputeTransformedIncrements(vtkIdType inIncr[3],
112  vtkIdType outIncr[3]);
113 
114  int DataVOI[6];
115 
117 
118  virtual int RequestInformation(vtkInformation* request,
119  vtkInformationVector** inputVector,
120  vtkInformationVector* outputVector);
121 
123 private:
124  vtkImageReader(const vtkImageReader&) VTK_DELETE_FUNCTION;
125  void operator=(const vtkImageReader&) VTK_DELETE_FUNCTION;
126 };
127 
128 #endif
static vtkImageReader2 * New()
Store vtkAlgorithm input/output information.
virtual int RequestInformation(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
Subclasses can reimplement this method to collect information from their inputs and set information f...
describes linear transformations via a 4x4 matrix
Definition: vtkTransform.h:60
int vtkIdType
Definition: vtkType.h:287
vtkTypeUInt64 DataMask
a simple class to control print indentation
Definition: vtkIndent.h:39
Superclass of transformable binary file readers.
vtkTransform * Transform
vtkGetStringMacro(ExtensionsString)
Returns a string listing all available extensions.
Superclass of binary file readers.
vtkSetMacro(IgnoreDriverBugs, bool)
When set known driver bugs are ignored during driver feature detection.
void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
Store zero or more vtkInformation instances.
char * ScalarArrayName
virtual void ExecuteDataWithInformation(vtkDataObject *data, vtkInformation *outInfo)
This is a convenience method that is implemented in many subclasses instead of RequestData.
general representation of visualization data
Definition: vtkDataObject.h:64
Transform
Definition: ADIOSDefs.h:39