X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=packages%2Fvtk%2Fsrc%2FbbvtkMIPCreator.cxx;h=0e737bd9b168464c798c046abe9ade27fd5ac494;hb=f7b3a882a0c679709a55c5ad68b8f1cdba9495f4;hp=708d19431b61355f3658b0abf66de17efa41472f;hpb=3924782985e3d7c795af6bb46c602157cfad59f0;p=bbtk.git diff --git a/packages/vtk/src/bbvtkMIPCreator.cxx b/packages/vtk/src/bbvtkMIPCreator.cxx index 708d194..0e737bd 100644 --- a/packages/vtk/src/bbvtkMIPCreator.cxx +++ b/packages/vtk/src/bbvtkMIPCreator.cxx @@ -1,20 +1,33 @@ -/*========================================================================= - +/*========================================================================= Program: bbtk Module: $RCSfile: bbvtkMIPCreator.cxx,v $ Language: C++ - Date: $Date: 2008/03/19 13:30:18 $ - Version: $Revision: 1.1 $ - - Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de - l'Image). All rights reserved. See Doc/License.txt or - http://www.creatis.insa-lyon.fr/Public/bbtk/License.html for details. - - This software is distributed WITHOUT ANY WARRANTY; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. See the above copyright notices for more information. - + Date: $Date: 2009/05/15 14:58:01 $ + Version: $Revision: 1.6 $ =========================================================================*/ + +/* --------------------------------------------------------------------- + +* Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale) +* Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux +* +* 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. +* ------------------------------------------------------------------------ */ + /** * \file * \brief @@ -33,26 +46,27 @@ namespace bbvtk BBTK_ADD_BLACK_BOX_TO_PACKAGE(vtk,MIPCreator) - BBTK_USER_BLACK_BOX_IMPLEMENTATION(MIPCreator,bbtk::AtomicBlackBox); + BBTK_BLACK_BOX_IMPLEMENTATION(MIPCreator,bbtk::AtomicBlackBox); - void MIPCreator::bbUserConstructor() - { - Init(); - bbSetInputShift(0); - bbSetInputScale(1.); - } - void MIPCreator::bbUserCopyConstructor() + //--------------------------------------------------------------------- + void MIPCreator::bbUserSetDefaultValues() { - Init(); + bbSetInputShift(0); + bbSetInputScale(1.0); + mCast = NULL; + mMIP = NULL; + mMapper = NULL; + mVolume = NULL; } - - void MIPCreator::Init() - { - + + //--------------------------------------------------------------------- + void MIPCreator::bbUserInitializeProcessing() + { + // Create the pipeline mCast = vtkImageShiftScale::New(); mCast->SetOutputScalarTypeToUnsignedChar(); @@ -74,12 +88,41 @@ namespace bbvtk bbSetOutputOut(mVolume); } + //--------------------------------------------------------------------- + void MIPCreator::bbUserFinalizeProcessing() + { + if (mCast!=NULL) + { + mCast->Delete(); + mCast=NULL; + } + + if (mMIP!=NULL) + { + mMIP->Delete(); + mMIP=NULL; + } + + if (mMapper!=NULL) + { + mMapper->Delete(); + mMapper=NULL; + } + + if (mVolume!=NULL) + { + mVolume->Delete(); + mVolume=NULL; + } + + + } //--------------------------------------------------------------------- void MIPCreator::Process() { mCast->SetInput( bbGetInputIn() ); - mCast->SetScale( bbGetInputScale() / 100. ); + mCast->SetScale( bbGetInputScale() / 100.0 ); mCast->SetShift( -bbGetInputShift() ); mMapper->Update();