X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=filters%2FclitkImageConvertGenericFilter.h;h=8bbca3c0890bbf5ea8093094b7fa52417d34e596;hb=fdb804fa1b0e67f22f35420396fa015c1c2946d5;hp=50f80ef51d042b5fa7a062b06a2d7112e026bf88;hpb=931a42358442f4ee4f314613c991c838d4b4e3b7;p=clitk.git diff --git a/filters/clitkImageConvertGenericFilter.h b/filters/clitkImageConvertGenericFilter.h index 50f80ef..8bbca3c 100644 --- a/filters/clitkImageConvertGenericFilter.h +++ b/filters/clitkImageConvertGenericFilter.h @@ -1,6 +1,22 @@ +/*========================================================================= + Program: vv http://www.creatis.insa-lyon.fr/rio/vv + + Authors belong to: + - University of LYON http://www.universite-lyon.fr/ + - Léon Bérard cancer center http://oncora1.lyon.fnclcc.fr + - CREATIS CNRS laboratory http://www.creatis.insa-lyon.fr + + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. See the copyright notices for more information. + + It is distributed under dual licence + + - BSD See included LICENSE.txt file + - CeCILL-B http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html +======================================================================-====*/ #ifndef CLITKIMAGECONVERTGENERICFILTER_H #define CLITKIMAGECONVERTGENERICFILTER_H - /** =================================================================== * @file clitkImageConvertGenericFilter.h @@ -19,7 +35,8 @@ namespace clitk { - class ImageConvertGenericFilter: public clitk::ImageToImageGenericFilter { + class ImageConvertGenericFilter: + public clitk::ImageToImageGenericFilter { public: // constructor - destructor @@ -27,7 +44,6 @@ namespace clitk { // Types typedef ImageConvertGenericFilter Self; - typedef ImageToImageGenericFilter Superclass; typedef itk::SmartPointer Pointer; typedef itk::SmartPointer ConstPointer; @@ -36,18 +52,27 @@ namespace clitk { // Members functions void SetOutputPixelType(std::string p) { mOutputPixelTypeName = p; } - void Update(); + bool IsWarningOccur() { return mWarningOccur; } + std::string & GetWarning() { return mWarning; } + void EnableDisplayWarning(bool b) { mDisplayWarning = b; } + + //-------------------------------------------------------------------- + // Main function called each time the filter is updated + template + void UpdateWithInputImageType(); protected: + template void InitializeImageType(); std::string mOutputPixelTypeName; + std::string mWarning; + bool mWarningOccur; + bool mDisplayWarning; - template void Update_WithDim(); - template void Update_WithDimAndPixelType(); - template void Update_WithDimAndPixelTypeAndOutputType(); + template void UpdateWithOutputType(); }; // end class ImageConvertGenericFilter -#include "clitkImageConvertGenericFilter.txx" + //#include "clitkImageConvertGenericFilter.txx" } // end namespace