]> Creatis software - clitk.git/blob - common/vvImage.h
b592306712005a9d18a85ade4ccf712e0af09930
[clitk.git] / common / vvImage.h
1 /*=========================================================================
2   Program:   vv                     http://www.creatis.insa-lyon.fr/rio/vv
3
4   Authors belong to:
5   - University of LYON              http://www.universite-lyon.fr/
6   - Léon Bérard cancer center       http://oncora1.lyon.fnclcc.fr
7   - CREATIS CNRS laboratory         http://www.creatis.insa-lyon.fr
8
9   This software is distributed WITHOUT ANY WARRANTY; without even
10   the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11   PURPOSE.  See the copyright notices for more information.
12
13   It is distributed under dual licence
14
15   - BSD        See included LICENSE.txt file
16   - CeCILL-B   http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
17 ======================================================================-====*/
18 #ifndef VVIMAGE_H
19 #define VVIMAGE_H
20
21 #include <iostream>
22 #include <vector>
23 #include <itkObjectFactory.h>
24 #include <itkProcessObject.h>
25
26 #include <vtkSmartPointer.h>
27 #include <vtkTransform.h>
28
29 class vtkImageData;
30
31 //------------------------------------------------------------------------------
32 class vvImage : public itk::LightObject
33 {
34 public :
35   typedef vvImage Self;
36   typedef itk::SmartPointer<Self> Pointer;
37   typedef itk::ProcessObject::Pointer ConverterPointer;
38   itkNewMacro(Self);
39
40   void Init();
41   void Reset();
42   template<class TItkImageType> void AddItkImage(TItkImageType *input);
43   const std::vector<vtkImageData*>& GetVTKImages();
44   vtkImageData* GetFirstVTKImageData();
45   int GetNumberOfDimensions() const;
46   int GetNumberOfSpatialDimensions();
47   void GetScalarRange(double* range);
48   unsigned long GetActualMemorySize();
49   std::vector<double> GetSpacing();
50   std::vector<double> GetOrigin() const;
51   std::vector<int> GetSize();
52   std::string GetScalarTypeAsITKString();
53   int GetNumberOfScalarComponents();
54   int GetScalarSize();
55   bool IsTimeSequence() const;
56   bool IsScalarTypeInteger();
57   bool IsScalarTypeInteger(int t);
58   vtkSmartPointer<vtkTransform> GetTransform();
59   void SetTimeSpacing(double s) { mTimeSpacing = s; }
60   void SetTimeOrigin(double o) { mTimeOrigin = o; }
61   bool HaveSameSizeAndSpacingThan(vvImage * other);
62
63 private:
64   vvImage();
65   ~vvImage();
66
67   std::vector< ConverterPointer > mItkToVtkConverters;
68   std::vector<vtkImageData*> mVtkImages;
69   vtkSmartPointer<vtkTransform> mTransform;
70
71   double mTimeOrigin;
72   double mTimeSpacing;
73   unsigned int mImageDimension;
74 };
75 //------------------------------------------------------------------------------
76
77 #include "vvImage.txx"
78
79 #endif