VTK  9.2.6
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
39class vtkTransform;
40
41#define VTK_FILE_BYTE_ORDER_BIG_ENDIAN 0
42#define VTK_FILE_BYTE_ORDER_LITTLE_ENDIAN 1
43
44class VTKIOIMAGE_EXPORT vtkImageReader : public vtkImageReader2
45{
46public:
49 void PrintSelf(ostream& os, vtkIndent indent) override;
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], int outExtent[6]);
86
87 int OpenAndSeekFile(int extent[6], int slice);
88
90
93 vtkSetStringMacro(ScalarArrayName);
94 vtkGetStringMacro(ScalarArrayName);
96
103 int CanReadFile(VTK_FILEPATH const char*) override
104 {
105 return 1; // I think I can read the file but I cannot prove it
106 }
107
108protected:
110 ~vtkImageReader() override;
111
112 vtkTypeUInt64 DataMask;
113
115
116 void ComputeTransformedSpacing(double Spacing[3]);
117 void ComputeTransformedOrigin(double origin[3]);
118 void ComputeTransformedExtent(int inExtent[6], int outExtent[6]);
120
121 int DataVOI[6];
122
124
126 vtkInformationVector* outputVector) override;
127
129
130private:
131 vtkImageReader(const vtkImageReader&) = delete;
132 void operator=(const vtkImageReader&) = delete;
133};
134
135#endif
general representation of visualization data
Definition: vtkDataObject.h:66
Superclass of binary file readers.
Superclass of transformable binary file readers.
static vtkImageReader * New()
void ComputeTransformedExtent(int inExtent[6], int outExtent[6])
int CanReadFile(VTK_FILEPATH const char *) override
vtkImageReader itself can read raw binary files.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
~vtkImageReader() override
void ComputeInverseTransformedExtent(int inExtent[6], int outExtent[6])
void ComputeTransformedSpacing(double Spacing[3])
int RequestInformation(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
Subclasses can reimplement this method to collect information from their inputs and set information f...
int OpenAndSeekFile(int extent[6], int slice)
char * ScalarArrayName
void ExecuteDataWithInformation(vtkDataObject *data, vtkInformation *outInfo) override
This is a convenience method that is implemented in many subclasses instead of RequestData.
virtual void SetTransform(vtkTransform *)
Set/Get transformation matrix to transform the data from slice space into world space.
void ComputeTransformedOrigin(double origin[3])
void ComputeInverseTransformedIncrements(vtkIdType inIncr[3], vtkIdType outIncr[3])
vtkTypeUInt64 DataMask
void ComputeTransformedIncrements(vtkIdType inIncr[3], vtkIdType outIncr[3])
vtkTransform * Transform
a simple class to control print indentation
Definition: vtkIndent.h:40
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
describes linear transformations via a 4x4 matrix
Definition: vtkTransform.h:61
int vtkIdType
Definition: vtkType.h:332
#define VTK_FILEPATH