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
36 vvBinaryImageOverlayActor();
37 ~vvBinaryImageOverlayActor();
39 void SetSlicer(vvSlicer * slicer);
40 void SetColor(double r, double g, double b);
41 void SetOpacity(double d);
42 void SetImage(vvImage * image, double bg, bool modeBG=true);
43 void Initialize(bool IsVisible=true);
45 void UpdateSlice(int slicer, int slice);
56 std::vector<double> mColor;
58 double mBackgroundValue;
59 double mForegroundValue;
61 vtkSmartPointer<vtkLookupTable> mColorLUT;
63 std::vector<vtkSmartPointer<vtkImageMapToRGBA> > mMapperList;
64 std::vector<vtkSmartPointer<vtkImageActor> > mImageActorList;
66 void ComputeExtent(int orientation,
70 void ComputeExtent(int * inExtent,
73 vtkImageData * overlay);
74 void SetDisplayExtentAndCameraPosition(int orientation,
77 vtkImageActor * actor,
80 }; // end class vvBinaryImageOverlayActor
81 //------------------------------------------------------------------------------