]> Creatis software - gdcm.git/blob - vtk/vtkGdcmReader.h
* src/gdcmHeader.h : added method to get the file name
[gdcm.git] / vtk / vtkGdcmReader.h
1 // $Header: /cvs/public/gdcm/vtk/vtkGdcmReader.h,v 1.7 2003/07/04 17:12:43 regrain Exp $
2
3 #ifndef __vtkGdcmReader_h
4 #define __vtkGdcmReader_h
5
6 #include <list>
7 #include <string>
8 #include "vtkImageReader.h"
9
10 class VTK_EXPORT vtkGdcmReader : public vtkImageReader
11 {
12 public:
13   static vtkGdcmReader *New() {return new vtkGdcmReader;};
14   vtkTypeMacro(vtkGdcmReader, vtkImageReader);
15   void PrintSelf(ostream& os, vtkIndent indent);
16
17   void RemoveAllFileName(void);
18   void AddFileName(const char* name);
19   void SetFileName(const char *name);
20
21 protected:
22   vtkGdcmReader();
23   ~vtkGdcmReader();
24   virtual void ExecuteInformation();
25   void ExecuteData(vtkDataObject *output);
26   void BuildFileListFromPattern();
27   int CheckFileCoherence();
28
29 private:
30   //BTX
31   // Number of columns of the image/volume to be loaded
32   int NumColumns;
33   // Number of lines of the image/volume to be loaded
34   int NumLines;
35   // Total number of planes (or images) of the stack to be build.
36   int TotalNumberOfPlanes;
37   // Type of the image[s]: 8/16/32 bits, signed/unsigned:
38   std::string ImageType;
39   // Pixel size (in number of bytes):
40   size_t PixelSize;
41   // List of filenames to be read in order to build a stack of images
42   // or volume. The order in the list shall be the order of the images.
43   std::list<std::string> FileNameList;
44
45   size_t LoadImageInMemory(std::string FileName, unsigned char * Dest,
46                            const unsigned long UpdateProgressTarget,
47                            unsigned long & UpdateProgressCount);
48   //ETX
49 };
50 #endif
51