]> Creatis software - creaMaracasVisu.git/blobdiff - 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
index f2406be7de51df235d04df0325808df71c91a1bc..bdb76a4df51871292a97d724b5083440f48cbb68 100644 (file)
@@ -1,24 +1,58 @@
+/*# ---------------------------------------------------------------------
+#
+# Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
+#                        pour la Sant�)
+# Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
+# Previous Authors : Laurent Guigues, Jean-Pierre Roux
+# CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
+#
+#  This software is governed by the CeCILL-B license under French law and
+#  abiding by the rules of distribution of free software. You can  use,
+#  modify and/ or redistribute the software under the terms of the CeCILL-B
+#  license as circulated by CEA, CNRS and INRIA at the following URL
+#  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
+#  or in the file LICENSE.txt.
+#
+#  As a counterpart to the access to the source code and  rights to copy,
+#  modify and redistribute granted by the license, users are provided only
+#  with a limited warranty  and the software's author,  the holder of the
+#  economic rights,  and the successive licensors  have only  limited
+#  liability.
+#
+#  The fact that you are presently reading this means that you have had
+#  knowledge of the CeCILL-B license and that you accept its terms.
+# ------------------------------------------------------------------------ */
+
 #ifndef _BASE_FILTER_MANUAL_PAINT_H_
 #define _BASE_FILTER_MANUAL_PAINT_H_
 
 #include <vtkImageData.h>
+
+//#include "regionStructUR.h"
+
 #include "imageModificationManager.h"
 
+
 class baseFilterManualPaint {
 
 public:
        baseFilterManualPaint();
        virtual ~baseFilterManualPaint();
 
-       virtual void SetImage(vtkImageData *image);
+       virtual void SetImages(vtkImageData *image,vtkImageData *image2);
        void SetPoint(int px, int py, int pz);
        void Set2D3D(int dim2D3D);
        void SetGrayLevel(double graylevel);
        void SetDirection(int direction);
        void ResetGeneralMinMax();
-       void SetGeneralMinMax(int minX, int maxX, int minY, int maxY, int minZ,
-                       int maxZ);
+       void SetGeneralMinMax(int minX, int maxX, int minY, int maxY, int minZ, int maxZ);
        void GetScalarRange(double * range);
+
+    void SetRangeMin( int min );//DFCH
+    void SetRangeMax( int max );//DFCH
+    int GetRangeMin( ); //DFCH
+    int GetRangeMax( ); //DFCH
+
        ImageMManager* GetImageMManager(); //DFCH
        void CleanImageMManager(); //DFCH
        virtual void Run();
@@ -26,26 +60,31 @@ public:
 private:
 
 protected:
-       ImageMManager *_IMManager; //Saves the last modified region (MinX, MaxX, MinY, MaxY, MinZ, MaxZ).
-       vtkImageData *_image;
-       int _direction;
-       int _px; // start point of the brush
-       int _py;
-       int _pz;
-       int _pMinX; // General min max of many brush actions
-       int _pMinY;
-       int _pMinZ;
-       int _pMaxX;
-       int _pMaxY;
-       int _pMaxZ;
-       int _minX; // min max of the image
-       int _maxX;
-       int _minY;
-       int _maxY;
-       int _minZ;
-       int _maxZ;
-       bool _2D3D;
-       double _graylevel;
+       ImageMManager   *_IMManager; //Saves the last modified region (MinX, MaxX, MinY, MaxY, MinZ, MaxZ).
+       vtkImageData    *_image;
+       vtkImageData    *_image2;
+       int                     _direction;
+       int                     _px; // start point of the brush
+       int                     _py;
+       int                     _pz;
+       int                     _pMinX; // General min max of many brush actions
+       int                     _pMinY;
+       int                     _pMinZ;
+       int                     _pMaxX;
+       int                     _pMaxY;
+       int                     _pMaxZ;
+       int                     _minX; // min max of the image
+       int                     _maxX;
+       int                     _minY;
+       int                     _maxY;
+       int                     _minZ;
+       int                     _maxZ;
+       bool                    _2D3D;
+       double                  _graylevel;
+    int                        _RangeMin;
+    int                        _RangeMax;
+
+
 };
 
 #endif // _BASE_FILTER_MANUAL_PAINT_H_