]> Creatis software - clitk.git/blob - vv/vvBinaryImageOverlayActor.h
Merge branch 'master' of /home/dsarrut/clitk3.server
[clitk.git] / vv / vvBinaryImageOverlayActor.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://www.centreleonberard.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 VVBINARYIMAGEOVERLAYACTOR_H
19 #define VVBINARYIMAGEOVERLAYACTOR_H
20
21 #include "clitkCommon.h"
22 #include "vvSlicer.h"
23
24 class vtkImageClip;
25 class vtkMarchingSquares;
26 class vtkActor;
27 class vvImage;
28 class vtkImageMapToRGBA;
29 class vtkImageActor;
30
31 //------------------------------------------------------------------------------
32 class vvBinaryImageOverlayActor : public itk::LightObject
33 {
34   //  Q_OBJECT
35  public:
36   typedef vvBinaryImageOverlayActor Self;
37   typedef itk::SmartPointer<Self> Pointer;
38   itkNewMacro(Self);
39
40   void SetSlicer(vvSlicer * slicer);
41   void SetColor(double r, double g, double b);
42   void SetOpacity(double d);
43   void SetImage(vvImage * image, double bg, bool modeBG=true);
44   void SetDepth(double d) { mDepth = d; }
45   void Initialize(bool IsVisible=true);
46   void UpdateColor();
47   void UpdateSlice(int slicer, int slice, bool force=false);
48   void HideActors();
49   void ShowActors();
50
51  protected:
52   vvSlicer * mSlicer;
53   int mSlice;
54   int mTSlice;
55   int mPreviousTSlice;
56   int mPreviousSlice;
57   vvImage * mImage;
58   std::vector<double> mColor;
59   double mAlpha;
60   double mBackgroundValue;
61   double mForegroundValue;
62   bool m_modeBG;
63   vtkSmartPointer<vtkLookupTable> mColorLUT;
64   double mDepth;
65
66   std::vector<vtkSmartPointer<vtkImageMapToRGBA> > mMapperList;
67   std::vector<vtkSmartPointer<vtkImageActor> > mImageActorList;
68
69   void ComputeExtent(int orientation, 
70                      int slice, 
71                      int * inExtent,
72                      int * outExtent);
73   void ComputeExtent(int * inExtent, 
74                      int * outExtent, 
75                      vtkImageData * image, 
76                      vtkImageData * overlay);
77   void SetDisplayExtentAndCameraPosition(int orientation, 
78                                          int slice, 
79                                          int * extent, 
80                                          vtkImageActor * actor, 
81                                          double position);
82
83 private:
84   vvBinaryImageOverlayActor();
85   ~vvBinaryImageOverlayActor();
86     
87 }; // end class vvBinaryImageOverlayActor
88 //------------------------------------------------------------------------------
89
90 #endif
91