]> Creatis software - clitk.git/blob - common/vvImage.h
added the new headers
[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 #include <iostream>
21 #include <vector>
22 #include <itkObjectFactory.h>
23
24 class vtkImageData;
25
26 class vvImage : public itk::LightObject {
27 public :
28   typedef vvImage Self;
29   typedef itk::SmartPointer<Self> Pointer;
30   itkNewMacro(Self);
31
32   void Init();
33   void SetImage(std::vector<vtkImageData*> images);
34   void AddImage(vtkImageData* image);
35   const std::vector<vtkImageData*>& GetVTKImages();
36   vtkImageData* GetFirstVTKImageData();
37   
38   int GetNumberOfDimensions() const;
39   int GetNumberOfSpatialDimensions();
40   ///Writes the scalar range to the provided array, which must have room for two doubles
41   void GetScalarRange(double* range);
42   unsigned long GetActualMemorySize();
43   std::vector<double> GetSpacing();
44   std::vector<double> GetOrigin() const;
45   std::vector<int> GetSize();
46   std::string GetScalarTypeAsString();
47   int GetNumberOfScalarComponents();
48   int GetScalarSize();
49   bool IsTimeSequence();
50   bool IsScalarTypeInteger();
51   bool IsScalarTypeInteger(int t);
52
53 private:
54   vvImage();
55   ~vvImage();
56   std::vector<vtkImageData*> mVtkImages;
57
58 };
59
60 #endif