X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2Ffpa%2FImage%2FFunctors%2FRegionGrowThresholdFunction.h;h=739dff4c24beb40c6d76c94e3977bef3d02bc588;hb=d4efd9f4b13f746951059be3f9a2730c0425d1a5;hp=6da586d2249271f1017dcf78399993d2846d7bb9;hpb=972dd44060dfff40ba3daab899c6365445f6de7e;p=FrontAlgorithms.git diff --git a/lib/fpa/Image/Functors/RegionGrowThresholdFunction.h b/lib/fpa/Image/Functors/RegionGrowThresholdFunction.h index 6da586d..739dff4 100644 --- a/lib/fpa/Image/Functors/RegionGrowThresholdFunction.h +++ b/lib/fpa/Image/Functors/RegionGrowThresholdFunction.h @@ -48,21 +48,11 @@ namespace fpa const I* img = this->GetInputImage( ); if( img != NULL ) { - /* TODO - if( this->IsInsideBuffer( idx ) ) - { - */ TPixel v = img->GetPixel( idx ); - std::cout - << v << " " - << this->m_LowerThreshold << " " - << this->m_UpperThreshold << std::endl; return( this->m_LowerThreshold <= v && v < this->m_UpperThreshold ); - // TODO: } // fi - } // fi return( false ); }