]> Creatis software - creaMaracasVisu.git/blob - lib/Kernel/VTKObjects/SurfaceRenderer/surfacerenderingimagestencilexport.h
5548f5263fbbc7e75530e0c1a0cf1fbad28d0d06
[creaMaracasVisu.git] / lib / Kernel / VTKObjects / SurfaceRenderer / surfacerenderingimagestencilexport.h
1 /*# ---------------------------------------------------------------------
2 #
3 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
4 #                        pour la Sant�)
5 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
6 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
7 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
8 #
9 #  This software is governed by the CeCILL-B license under French law and
10 #  abiding by the rules of distribution of free software. You can  use,
11 #  modify and/ or redistribute the software under the terms of the CeCILL-B
12 #  license as circulated by CEA, CNRS and INRIA at the following URL
13 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
14 #  or in the file LICENSE.txt.
15 #
16 #  As a counterpart to the access to the source code and  rights to copy,
17 #  modify and redistribute granted by the license, users are provided only
18 #  with a limited warranty  and the software's author,  the holder of the
19 #  economic rights,  and the successive licensors  have only  limited
20 #  liability.
21 #
22 #  The fact that you are presently reading this means that you have had
23 #  knowledge of the CeCILL-B license and that you accept its terms.
24 # ------------------------------------------------------------------------ */
25
26 #ifndef SURFACERENDERINGIMAGESTENCILEXPORT_H
27 #define SURFACERENDERINGIMAGESTENCILEXPORT_H
28
29 #include "vtkObjectFactory.h"
30
31 //EED 2017-01-01 Migration VTK7
32 #if VTK_MAJOR_VERSION <= 5
33   #include <vtkDataSetToImageFilter.h>
34 #else
35   #include "vtkPolyDataAlgorithm.h"
36   #include "vtkDataObject.h"
37   #include "vtkInformation.h"
38   #include "vtkDemandDrivenPipeline.h"
39   #include "vtkInformationVector.h"
40 #endif
41
42 #include <vtkSmartPointer.h>
43 #include <vtkPolyDataToImageStencil.h>
44 #include <vtkImageStencil.h>
45 #include <vtkImageData.h>
46 #include <vtkPolyData.h>
47
48 //EED 2017-01-01 Migration VTK7
49 #if VTK_MAJOR_VERSION <= 5
50 class SurfaceRenderingImageStencilExport : public vtkDataSetToImageFilter
51 #else
52 class SurfaceRenderingImageStencilExport : public vtkPolyDataAlgorithm
53 #endif
54 {
55 public:
56     static SurfaceRenderingImageStencilExport *New();
57
58     vtkTypeMacro(SurfaceRenderingImageStencilExport,vtkPolyDataAlgorithm)
59
60 #if VTK_MAJOR_VERSION <= 5
61     virtual void Update();
62 #else
63         // ..
64 #endif
65
66
67     virtual vtkImageData* GetOutputData();
68 protected:
69
70 //EED 2017-01-01 Migration VTK7
71 #if VTK_MAJOR_VERSION <= 5
72   // Usual data generation method
73     virtual void Execute(vtkImageData *data);
74 #else
75   virtual int RequestData(  vtkInformation *vtkNotUsed(request),  vtkInformationVector **inputVector,  vtkInformationVector *outputVector);     
76 #endif
77
78 private:
79
80     SurfaceRenderingImageStencilExport();
81     ~SurfaceRenderingImageStencilExport();
82
83     vtkImageData* ImageOutput;
84 };
85
86 #endif // SURFACERENDERINGIMAGESTENCILEXPORT_H