]> Creatis software - FrontAlgorithms.git/blobdiff - lib/fpa/Image/Functors/RegionGrowThresholdFunction.h
Minor bugs
[FrontAlgorithms.git] / lib / fpa / Image / Functors / RegionGrowThresholdFunction.h
index 6da586d2249271f1017dcf78399993d2846d7bb9..739dff4c24beb40c6d76c94e3977bef3d02bc588 100644 (file)
@@ -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 );
           }