X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=itk%2FclitkLocallyAdaptiveBinaryThresholdImageFunction.h;h=f05c892d14b95cbbe16f7772ebd35c01da64e6c1;hb=a523f5be1e221995c0d4d29a0077b5e8b984c96d;hp=6b32e829dace22bb256dd1bfdf57da7d420fb741;hpb=573d80d0f7a17607d2ee883c21c940c0ba020282;p=clitk.git diff --git a/itk/clitkLocallyAdaptiveBinaryThresholdImageFunction.h b/itk/clitkLocallyAdaptiveBinaryThresholdImageFunction.h index 6b32e82..f05c892 100644 --- a/itk/clitkLocallyAdaptiveBinaryThresholdImageFunction.h +++ b/itk/clitkLocallyAdaptiveBinaryThresholdImageFunction.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