00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00054 #ifndef __vtkImageBlockReader_h
00055 #define __vtkImageBlockReader_h
00056
00057 #include "vtkImageSource.h"
00058
00059
00060 class VTK_EXPORT vtkImageBlockReader : public vtkImageSource
00061 {
00062 public:
00063 static vtkImageBlockReader *New();
00064 vtkTypeMacro(vtkImageBlockReader,vtkImageSource);
00065 void PrintSelf(ostream& os, vtkIndent indent);
00066
00069 vtkSetVector3Macro(Divisions, int);
00070 vtkGetVector3Macro(Divisions, int);
00071
00074 vtkSetMacro(Overlap, int);
00075 vtkGetMacro(Overlap, int);
00076
00079 vtkSetVector6Macro(WholeExtent, int);
00080 vtkGetVector6Macro(WholeExtent, int);
00081
00084 vtkSetMacro(NumberOfScalarComponents, int);
00085 vtkGetMacro(NumberOfScalarComponents, int);
00086
00089 vtkSetMacro(ScalarType, int);
00090 vtkGetMacro(ScalarType, int);
00091
00093 vtkSetStringMacro(FilePattern);
00094 vtkGetStringMacro(FilePattern);
00095
00096
00097
00098 protected:
00099 vtkImageBlockReader();
00100 ~vtkImageBlockReader();
00101 vtkImageBlockReader(const vtkImageBlockReader&) {};
00102 void operator=(const vtkImageBlockReader&) {};
00103
00104 char *FilePattern;
00105
00106 int WholeExtent[6];
00107 int NumberOfScalarComponents;
00108 int ScalarType;
00109 int Divisions[3];
00110 int Overlap;
00111
00112
00114 void Execute(vtkImageData *data);
00115 void ExecuteInformation();
00116
00117
00118 void ComputeBlockExtents();
00119 void DeleteBlockExtents();
00120
00121
00122 void Read(vtkImageData *data, int *ext);
00123 void ReadRemainder(vtkImageData *data, int *ext, int *doneExt);
00124 void ReadBlock(int xIdx, int yIdx, int zIdx,
00125 vtkImageData *data, int *ext);
00126
00129 void ModifyOutputUpdateExtent();
00130
00131
00132 int *XExtents;
00133 int *YExtents;
00134 int *ZExtents;
00135 };
00136
00137
00138 #endif
00139
00140