X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FmaracasVisuLib%2Fsrc%2Finterface%2FwxWindows%2Fwidgets%2FmanualPaint%2FbaseFilterManualPaint.h;h=32319a5a3eee1e3caa981125306278dca511f920;hb=e4ef2b5df5aac431ff3b806f83b7dd5e55e89d86;hp=71e53988eea3a960a563f9fed2235ea85f6342a4;hpb=b37bd791f88bd4c1a6146fadcb88864d7cd1a5c3;p=creaMaracasVisu.git diff --git a/lib/maracasVisuLib/src/interface/wxWindows/widgets/manualPaint/baseFilterManualPaint.h b/lib/maracasVisuLib/src/interface/wxWindows/widgets/manualPaint/baseFilterManualPaint.h index 71e5398..32319a5 100644 --- a/lib/maracasVisuLib/src/interface/wxWindows/widgets/manualPaint/baseFilterManualPaint.h +++ b/lib/maracasVisuLib/src/interface/wxWindows/widgets/manualPaint/baseFilterManualPaint.h @@ -1,52 +1,80 @@ +/*# --------------------------------------------------------------------- +# +# 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 -#include -#include "regionStructUR.h" - -class baseFilterManualPaint { - - public: - baseFilterManualPaint(); - virtual ~baseFilterManualPaint(); - - virtual void SetImage(vtkImageData *image); - 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 GetScalarRange( double * range ); - RegionStructUR* GetModifiedRegion();//DFCH - void CleanModifiedRegion();//DFCH - void CalculateMinMaxRegion( const int& i, const int& j, const int& k);//DFCH - virtual void Run(); - - private: - - protected: - RegionStructUR *_MRegion; //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; + +//#include "regionStructUR.h" + +#include "imageModificationManager.h" + + +class baseFilterManualPaint { + +public: + baseFilterManualPaint(); + virtual ~baseFilterManualPaint(); + + virtual void SetImage(vtkImageData *image); + 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 GetScalarRange(double * range); + ImageMManager* GetImageMManager(); //DFCH + void CleanImageMManager(); //DFCH + virtual void Run(); + +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; }; #endif // _BASE_FILTER_MANUAL_PAINT_H_