]> Creatis software - clitk.git/blob - common/rtkXRadImageIO.h
Merge branch 'master' of git.creatis.insa-lyon.fr:clitk
[clitk.git] / common / rtkXRadImageIO.h
1 /*=========================================================================
2  *
3  *  Copyright RTK Consortium
4  *
5  *  Licensed under the Apache License, Version 2.0 (the "License");
6  *  you may not use this file except in compliance with the License.
7  *  You may obtain a copy of the License at
8  *
9  *         http://www.apache.org/licenses/LICENSE-2.0.txt
10  *
11  *  Unless required by applicable law or agreed to in writing, software
12  *  distributed under the License is distributed on an "AS IS" BASIS,
13  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *  See the License for the specific language governing permissions and
15  *  limitations under the License.
16  *
17  *=========================================================================*/
18
19 #ifndef __rtkXRadImageIO_h
20 #define __rtkXRadImageIO_h
21
22 #include <itkImageIOBase.h>
23 #include <fstream>
24 #include <string.h>
25
26 namespace rtk {
27
28 /** \class XRadImageIO
29  * \brief Class for reading XRad image file format. XRad is the format of
30  * exported X-ray projection images on the small animal irradiator SMART.
31  * http://www.pxinc.com/products/small-animal-igrt-platform/x-rad-225cx/
32  *
33  * \author Simon Rit
34  *
35  * \ingroup IOFilters
36  */
37 class XRadImageIO : public itk::ImageIOBase
38 {
39 public:
40   /** Standard class typedefs. */
41   typedef XRadImageIO             Self;
42   typedef itk::ImageIOBase        Superclass;
43   typedef itk::SmartPointer<Self> Pointer;
44
45   XRadImageIO(): Superclass() {}
46
47   /** Method for creation through the object factory. */
48   itkNewMacro(Self);
49
50   /** Run-time type information (and related methods). */
51   itkTypeMacro(XRadImageIO, ImageIOBase);
52
53   /*-------- This part of the interface deals with reading data. ------ */
54   virtual void ReadImageInformation();
55
56   virtual bool CanReadFile( const char* FileNameToRead );
57
58   virtual void Read(void * buffer);
59
60   /*-------- This part of the interfaces deals with writing data. ----- */
61   virtual void WriteImageInformation(bool keepOfStream);
62
63   virtual void WriteImageInformation() {
64     WriteImageInformation(false);
65   }
66
67   virtual bool CanWriteFile(const char* filename);
68
69   virtual void Write(const void* buffer);
70
71 protected:
72
73 }; // end class XRadImageIO
74
75 } // end namespace
76
77 #endif