]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/manualPaint/baseFilterManualPaint.h
#2864 creaMaracasVisu Feature New Normal - Manual Paint , modifies external image...
[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
42         virtual void SetImages(vtkImageData *image,vtkImageData *image2);
43         void SetPoint(int px, int py, int pz);
44         void Set2D3D(int dim2D3D);
45         void SetGrayLevel(double graylevel);
46         void SetDirection(int direction);
47         void ResetGeneralMinMax();
48         void SetGeneralMinMax(int minX, int maxX, int minY, int maxY, int minZ, int maxZ);
49         void GetScalarRange(double * range);
50
51     void SetRangeMin( int min );//DFCH
52     void SetRangeMax( int max );//DFCH
53     int GetRangeMin( ); //DFCH
54     int GetRangeMax( ); //DFCH
55
56         ImageMManager* GetImageMManager(); //DFCH
57         void CleanImageMManager(); //DFCH
58         virtual void Run();
59
60 private:
61
62 protected:
63         ImageMManager   *_IMManager; //Saves the last modified region (MinX, MaxX, MinY, MaxY, MinZ, MaxZ).
64         vtkImageData    *_image;
65         vtkImageData    *_image2;
66         int                     _direction;
67         int                     _px; // start point of the brush
68         int                     _py;
69         int                     _pz;
70         int                     _pMinX; // General min max of many brush actions
71         int                     _pMinY;
72         int                     _pMinZ;
73         int                     _pMaxX;
74         int                     _pMaxY;
75         int                     _pMaxZ;
76         int                     _minX; // min max of the image
77         int                     _maxX;
78         int                     _minY;
79         int                     _maxY;
80         int                     _minZ;
81         int                     _maxZ;
82         bool                    _2D3D;
83         double                  _graylevel;
84     int                         _RangeMin;
85     int                         _RangeMax;
86
87
88 };
89
90 #endif // _BASE_FILTER_MANUAL_PAINT_H_