X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=common%2FclitkCommonGenericFilter.h;h=fe04c5dafb821b312681c6f1ddff5cb1bf184392;hb=573d80d0f7a17607d2ee883c21c940c0ba020282;hp=3f9d63cfca556525dbfa40c4ef4cb443ec09c35e;hpb=163fa80ef3873595f3e3cf75fb03e53536d1a6ee;p=clitk.git diff --git a/common/clitkCommonGenericFilter.h b/common/clitkCommonGenericFilter.h index 3f9d63c..fe04c5d 100644 --- a/common/clitkCommonGenericFilter.h +++ b/common/clitkCommonGenericFilter.h @@ -3,7 +3,7 @@ Authors belong to: - University of LYON http://www.universite-lyon.fr/ - - Léon Bérard cancer center http://oncora1.lyon.fnclcc.fr + - Léon Bérard cancer center http://www.centreleonberard.fr - CREATIS CNRS laboratory http://www.creatis.insa-lyon.fr This software is distributed WITHOUT ANY WARRANTY; without even @@ -14,12 +14,13 @@ - BSD See included LICENSE.txt file - CeCILL-B http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html -======================================================================-====*/ +===========================================================================**/ #ifndef CLITKCOMMONGENERICFILTER_H #define CLITKCOMMONGENERICFILTER_H #include "clitkCommon.h" +#include "clitkFilterBase.h" /*-------------------------------------------------------------------- DISCLAIMER : I obviously know how to make this mess much clearer and @@ -65,14 +66,14 @@ namespace clitk { mMapOfImageTypeToFunction[dim][ncomp][pixelname]->Execute(); } template - void AddNewDimensionAndPixelType() { + void AddNewDimensionAndPixelType() { typedef itk::Image,Dim> InputImageType; mMapOfImageTypeToFunction[Dim][NComp][ GetTypeAsString() ] = new GenericFilterFunctorWithDimAndPixelType(mFilter); } /// Specialization for NComp == 1 template - void AddNewDimensionAndPixelType() { + void AddNewDimensionAndPixelType() { typedef itk::Image InputImageType; mMapOfImageTypeToFunction[Dim][1][ GetTypeAsString() ] = new GenericFilterFunctorWithDimAndPixelType(mFilter);