X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=itk%2FclitkLocallyAdaptiveBinaryThresholdImageFunction.h;h=f05c892d14b95cbbe16f7772ebd35c01da64e6c1;hb=2490add275e6bca52f8b6cc23ad09a389fee0f17;hp=5c4817ddfffb2cb86befab94c2eac015afe37b1c;hpb=ba31bdc6a30da917de2619e3fde53178fe253753;p=clitk.git diff --git a/itk/clitkLocallyAdaptiveBinaryThresholdImageFunction.h b/itk/clitkLocallyAdaptiveBinaryThresholdImageFunction.h index 5c4817d..f05c892 100644 --- a/itk/clitkLocallyAdaptiveBinaryThresholdImageFunction.h +++ b/itk/clitkLocallyAdaptiveBinaryThresholdImageFunction.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,7 +14,7 @@ - BSD See included LICENSE.txt file - CeCILL-B http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html -======================================================================-====*/ +===========================================================================**/ #ifndef __clitkLocallyAdaptiveBinaryThresholdImageFunction_h #define __clitkLocallyAdaptiveBinaryThresholdImageFunction_h #include "itkBinaryThresholdImageFunction.h" @@ -71,17 +71,17 @@ public: itkGetConstReferenceMacro(Radius, InputSizeType); /** Evalulate the function at specified index */ - virtual bool EvaluateAtIndex( const IndexType& index ) const; + virtual bool EvaluateAtIndex( const IndexType& index ) const ITK_OVERRIDE; /** Evaluate the function at non-integer positions */ - virtual bool Evaluate( const PointType& point ) const + virtual bool Evaluate( const PointType& point ) const ITK_OVERRIDE { IndexType index; this->ConvertPointToNearestIndex( point, index ); return this->EvaluateAtIndex( index ); } virtual bool EvaluateAtContinuousIndex( - const ContinuousIndexType& cindex ) const + const ContinuousIndexType& cindex ) const ITK_OVERRIDE { IndexType index; this->ConvertContinuousIndexToNearestIndex( cindex, index ); @@ -108,7 +108,7 @@ public: protected: LocallyAdaptiveBinaryThresholdImageFunction(); ~LocallyAdaptiveBinaryThresholdImageFunction(){}; - void PrintSelf(std::ostream& os, itk::Indent indent) const; + void PrintSelf(std::ostream& os, itk::Indent indent) const ITK_OVERRIDE; private: LocallyAdaptiveBinaryThresholdImageFunction( const Self& ); //purposely not implemented