1 /*=========================================================================
2 Program: vv http://www.creatis.insa-lyon.fr/rio/vv
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
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.
13 It is distributed under dual licence
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
21 #include "clitkCommon.h"
25 class vtkMarchingSquares;
28 class vtkImageMapToRGBA;
31 //------------------------------------------------------------------------------
32 class vvBinaryImageOverlayActor : public itk::LightObject
36 typedef vvBinaryImageOverlayActor Self;
37 typedef itk::SmartPointer<Self> Pointer;
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 Initialize(bool IsVisible=true);
46 void UpdateSlice(int slicer, int slice);
57 std::vector<double> mColor;
59 double mBackgroundValue;
60 double mForegroundValue;
62 vtkSmartPointer<vtkLookupTable> mColorLUT;
64 std::vector<vtkSmartPointer<vtkImageMapToRGBA> > mMapperList;
65 std::vector<vtkSmartPointer<vtkImageActor> > mImageActorList;
67 void ComputeExtent(int orientation,
71 void ComputeExtent(int * inExtent,
74 vtkImageData * overlay);
75 void SetDisplayExtentAndCameraPosition(int orientation,
78 vtkImageActor * actor,
82 vvBinaryImageOverlayActor();
83 ~vvBinaryImageOverlayActor();
85 }; // end class vvBinaryImageOverlayActor
86 //------------------------------------------------------------------------------