X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FmaracasVisuLib%2Fsrc%2Finterface%2FwxWindows%2Fwidgets%2FmanualPaint%2FbaseFilterManualPaint.cpp;h=0a9f995c57616ad9292aaf3c9852d7f44b9fdd37;hb=7d08401d8ffee17aaf47ff6ee83161cbaa1f10b9;hp=80dbcc4a8d8f99ebeabaa54615f7608e4bef8bbb;hpb=8138ced89fa9f1cc6933ff739dfa28b1e3c3883b;p=creaMaracasVisu.git diff --git a/lib/maracasVisuLib/src/interface/wxWindows/widgets/manualPaint/baseFilterManualPaint.cpp b/lib/maracasVisuLib/src/interface/wxWindows/widgets/manualPaint/baseFilterManualPaint.cpp index 80dbcc4..0a9f995 100644 --- a/lib/maracasVisuLib/src/interface/wxWindows/widgets/manualPaint/baseFilterManualPaint.cpp +++ b/lib/maracasVisuLib/src/interface/wxWindows/widgets/manualPaint/baseFilterManualPaint.cpp @@ -1,24 +1,55 @@ +/*# --------------------------------------------------------------------- +# +# 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. +# ------------------------------------------------------------------------ */ + #include "baseFilterManualPaint.h" -baseFilterManualPaint::baseFilterManualPaint() { - //_MRegion = new RegionStructUR(); - //CleanModifiedRegion(); - _graylevel = 0.0; - _2D3D = 1; // 0 2D , 1 true 3D - _direction = 0; // 1 XZ , 0 YZ , 2 XY - _minX = 0; - _minY = 0; - _minZ = 0; - _maxX = 0; - _maxY = 0; - _maxZ = 0; - - _pMinX = 0; - _pMinY = 0; - _pMinZ = 0; - _pMaxX = 0; - _pMaxY = 0; - _pMaxZ = 0; +baseFilterManualPaint::baseFilterManualPaint() +{ + _IMManager = new ImageMManager(); + _IMManager->CleanModifiedRegion(); + _graylevel = 0.0; + _2D3D = 1; // 0 2D , 1 true 3D + _direction = 0; // 1 XZ , 0 YZ , 2 XY + _image = NULL; + _image2 = NULL; + _minX = 0; + _minY = 0; + _minZ = 0; + _maxX = 0; + _maxY = 0; + _maxZ = 0; + + _pMinX = 0; + _pMinY = 0; + _pMinZ = 0; + _pMaxX = 0; + _pMaxY = 0; + _pMaxZ = 0; + + _RangeMin = 0; + _RangeMax = 6000; } //--------------------------------------------------------------------------- @@ -54,18 +85,32 @@ void baseFilterManualPaint::SetPoint(int px, int py, int pz) { } //--------------------------------------------------------------------------- -void baseFilterManualPaint::SetImage(vtkImageData *image) { +void baseFilterManualPaint::SetImages(vtkImageData *image, vtkImageData *image2) +{ + _image = image; + _image2 = image2; + int ext[6]; - _image = image; _image->GetWholeExtent(ext); _minX = 0; _minY = 0; _minZ = 0; - _maxX = ext[1] - ext[0]; - _maxY = ext[3] - ext[2]; - _maxZ = ext[5] - ext[4]; + + if (_image2!=NULL) + { + int extB[6]; + _image2->GetWholeExtent(extB); + _maxX = std::min( ext[1]-ext[0] , extB[1]-extB[0] ); + _maxY = std::min( ext[3]-ext[2] , extB[3]-extB[2] ); + _maxZ = std::min( ext[5]-ext[4] , extB[5]-extB[4] ); + } else { + _maxX = ext[1]-ext[0]; + _maxY = ext[3]-ext[2]; + _maxZ = ext[5]-ext[4]; + } // if } + //--------------------------------------------------------------------------- void baseFilterManualPaint::ResetGeneralMinMax() { _pMinX = 10000; @@ -109,35 +154,44 @@ void baseFilterManualPaint::SetGeneralMinMax(int minX, int maxX, int minY, void baseFilterManualPaint::GetScalarRange(double * range) { range = this->_image->GetScalarRange(); } -/* -RegionStructUR* baseFilterManualPaint::GetModifiedRegion() { - return (this->_MRegion); + +//--------------------------------------------------------------------------- +ImageMManager* baseFilterManualPaint::GetImageMManager() { + return (this->_IMManager); } //DFCH -void baseFilterManualPaint::CleanModifiedRegion() { - this->_MRegion->minX = 0; - this->_MRegion->maxX = 0; - this->_MRegion->minY = 0; - this->_MRegion->maxY = 0; - this->_MRegion->minZ = 0; - this->_MRegion->maxZ = 0; + +//--------------------------------------------------------------------------- +void baseFilterManualPaint::CleanImageMManager() { + this->_IMManager->CleanModifiedRegion(); } //DFCH -void baseFilterManualPaint::CalculateMinMaxRegion(const int& i, const int& j, - const int& k) { - if (i < this->_MRegion->minX) { - this->_MRegion->minX = i; - } else { - this->_MRegion->maxX = i; - } //fi - if (j < this->_MRegion->minY) { - this->_MRegion->minY = j; - } else { - this->_MRegion->maxY = j; - } //fi - if (k < this->_MRegion->minZ) { - this->_MRegion->minZ = k; - } else { - this->_MRegion->maxZ = k; - } //fi + + + + +//--------------------------------------------------------------------------- +void baseFilterManualPaint::SetRangeMin(int min) +{ + _RangeMin = min; +} + +//--------------------------------------------------------------------------- +void baseFilterManualPaint::SetRangeMax(int max) +{ + _RangeMax = max; } -*/ + +//--------------------------------------------------------------------------- +int baseFilterManualPaint::GetRangeMin() +{ + return _RangeMin; +} + +//--------------------------------------------------------------------------- +int baseFilterManualPaint::GetRangeMax() +{ + return _RangeMax; +} + + +