]> Creatis software - clitk.git/blob - common/vvImage.h
- move into filters
[clitk.git] / common / vvImage.h
1 /*=========================================================================
2
3   Program:   vv
4   Module:    $RCSfile: vvImage.h,v $
5   Language:  C++
6   Date:      $Date: 2010/01/29 07:27:45 $
7   Version:   $Revision: 1.3 $
8   Author :   Pierre Seroul (pierre.seroul@gmail.com)
9
10   Copyright (C) 2008
11   Léon Bérard cancer center http://oncora1.lyon.fnclcc.fr
12   CREATIS-LRMN http://www.creatis.insa-lyon.fr
13
14   This program is free software: you can redistribute it and/or modify
15   it under the terms of the GNU General Public License as published by
16   the Free Software Foundation, version 3 of the License.
17
18   This program is distributed in the hope that it will be useful,
19   but WITHOUT ANY WARRANTY; without even the implied warranty of
20   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21   GNU General Public License for more details.
22
23   You should have received a copy of the GNU General Public License
24   along with this program.  If not, see <http://www.gnu.org/licenses/>.
25
26   =========================================================================*/
27 #ifndef VVIMAGE_H
28 #define VVIMAGE_H
29
30 #include <iostream>
31 #include <vector>
32 #include <itkObjectFactory.h>
33
34 class vtkImageData;
35
36 class vvImage : public itk::LightObject {
37 public :
38   typedef vvImage Self;
39   typedef itk::SmartPointer<Self> Pointer;
40   itkNewMacro(Self);
41
42   void Init();
43   void SetImage(std::vector<vtkImageData*> images);
44   void AddImage(vtkImageData* image);
45   const std::vector<vtkImageData*>& GetVTKImages();
46   vtkImageData* GetFirstVTKImageData();
47   
48   int GetNumberOfDimensions() const;
49   int GetNumberOfSpatialDimensions();
50   ///Writes the scalar range to the provided array, which must have room for two doubles
51   void GetScalarRange(double* range);
52   unsigned long GetActualMemorySize();
53   std::vector<double> GetSpacing();
54   std::vector<double> GetOrigin() const;
55   std::vector<int> GetSize();
56   std::string GetScalarTypeAsString();
57   int GetNumberOfScalarComponents();
58   int GetScalarSize();
59   bool IsTimeSequence();
60   bool IsScalarTypeInteger();
61   bool IsScalarTypeInteger(int t);
62
63 private:
64   vvImage();
65   ~vvImage();
66   std::vector<vtkImageData*> mVtkImages;
67
68 };
69
70 #endif