]> Creatis software - clitk.git/blob - common/rtkXRadImageIO.h
Increase number of decimal for fusion and overlay
[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 #include "clitkCommon.h"
27
28 namespace rtk {
29
30 /** \class XRadImageIO
31  * \brief Class for reading XRad image file format. XRad is the format of
32  * exported X-ray projection images on the small animal irradiator SMART.
33  * http://www.pxinc.com/products/small-animal-igrt-platform/x-rad-225cx/
34  *
35  * \author Simon Rit
36  *
37  * \ingroup IOFilters
38  */
39 class XRadImageIO : public itk::ImageIOBase
40 {
41 public:
42   /** Standard class typedefs. */
43   typedef XRadImageIO             Self;
44   typedef itk::ImageIOBase        Superclass;
45   typedef itk::SmartPointer<Self> Pointer;
46
47   XRadImageIO(): Superclass() {}
48
49   /** Method for creation through the object factory. */
50   itkNewMacro(Self);
51
52   /** Run-time type information (and related methods). */
53   itkTypeMacro(XRadImageIO, ImageIOBase);
54
55   /*-------- This part of the interface deals with reading data. ------ */
56   virtual void ReadImageInformation() ITK_OVERRIDE;
57
58   virtual bool CanReadFile( const char* FileNameToRead ) ITK_OVERRIDE;
59
60   virtual void Read(void * buffer) ITK_OVERRIDE;
61
62   /*-------- This part of the interfaces deals with writing data. ----- */
63   virtual void WriteImageInformation(bool keepOfStream);
64
65   virtual void WriteImageInformation() ITK_OVERRIDE {
66     WriteImageInformation(false);
67   }
68
69   virtual bool CanWriteFile(const char* filename) ITK_OVERRIDE;
70
71   virtual void Write(const void* buffer) ITK_OVERRIDE;
72
73 protected:
74
75 }; // end class XRadImageIO
76
77 } // end namespace
78
79 #endif