aimstil  5.0.5
tilWorldImage.h
Go to the documentation of this file.
1 #ifndef TIL_WORLD_IMAGE_H
2 #define TIL_WORLD_IMAGE_H
3 
4 // include from TIL library
5 namespace til {
6 
7 
8  template < class Image >
9  class WorldImage : public Image
10  {
11  public:
12 
13 
14 
15  private:
16 
17  private:
18 
19  numeric_array<double,3> m_voxelSize;
20  numeric_array<double,3> m_origin;
21 
22  // I have no idea whether this should be double or float...
23  Affine<double> m_world2coord;
24  };
25 
26 } // namespace til
27 
28 #endif
29 
Belongs to package Box Do not include directly, include til/Box.h instead.
Definition: Accumulator.h:10