]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/manualPaint/baseFilterManualPaint.h
76afc3fced5085b8eb93f19a61c5d2cfe95cb30d
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / manualPaint / baseFilterManualPaint.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 _BASE_FILTER_MANUAL_PAINT_H_
27 #define _BASE_FILTER_MANUAL_PAINT_H_
28
29 #include <vtkImageData.h>
30
31 //#include "regionStructUR.h"
32
33 #include "imageModificationManager.h"
34
35
36 class baseFilterManualPaint {
37
38 public:
39         baseFilterManualPaint();
40         virtual ~baseFilterManualPaint();
41         virtual void SetImages(vtkImageData *image,vtkImageData *image2);
42         void SetPoint(int px, int py, int pz);
43         void Set2D3D(int dim2D3D);
44         void SetGrayLevel(double graylevel);
45         void SetDirection(int direction);
46         void ResetGeneralMinMax();
47         void SetGeneralMinMax(int minX, int maxX, int minY, int maxY, int minZ, int maxZ);
48         void GetScalarRange(double * range);
49     void SetRangeMin( int min );//DFCH
50     void SetRangeMax( int max );//DFCH
51     int GetRangeMin( ); //DFCH
52     int GetRangeMax( ); //DFCH
53         ImageMManager* GetImageMManager(); //DFCH
54         void CleanImageMManager(); //DFCH
55         virtual void Run();
56 private:
57 protected:
58         ImageMManager   *_IMManager; //Saves the last modified region (MinX, MaxX, MinY, MaxY, MinZ, MaxZ).
59         vtkImageData    *_image;
60         vtkImageData    *_image2;
61         int                     _direction;
62         int                     _px; // start point of the brush
63         int                     _py;
64         int                     _pz;
65         int                     _minX; // min max of the image
66         int                     _minY;
67         int                     _minZ;
68
69 //EED 2020-04-28  BORRAME Change to local variables to use with openmp
70 //      int                     _maxX;
71 //      int                     _maxY;
72 //      int                     _maxZ;
73 //      int                     _pMinX; // General min max of many brush actions
74 //      int                     _pMinY;
75 //      int                     _pMinZ;
76 //      int                     _pMaxX;
77 //      int                     _pMaxY;
78 //      int                     _pMaxZ;
79
80         int                     _dimX;
81         int                     _dimY;
82         int                     _dimZ;
83         bool                    _2D3D;
84         double                  _graylevel;
85     int                         _RangeMin;
86     int                         _RangeMax;
87
88 //EED 2020-04-28  BORRAME Change to local variables to use with openmp
89         long int                _OneColumn;
90         long int                _OneLine;
91         long int                _OnePlane;
92
93
94 };
95
96 #endif // _BASE_FILTER_MANUAL_PAINT_H_