]> Creatis software - FrontAlgorithms.git/blobdiff - lib/fpa/Image/Functors/RegionGrow/BinaryThreshold.hxx
...
[FrontAlgorithms.git] / lib / fpa / Image / Functors / RegionGrow / BinaryThreshold.hxx
index e1853e2ca7db676bdb483d41e91f21e8497f29da..7f2b9dca99bc40f2e4b78cfdbe6a95d0ab3137ec 100644 (file)
@@ -15,7 +15,7 @@ Evaluate( const TIndex& a, const TIndex& b ) const
   {
     TPixel v = im->GetPixel( b );
     return(
-      ( this->m_Lower <= v && v <= this->m_Upper )?
+      ( this->m_Lower < v && v < this->m_Upper )?
       this->m_InsideValue:
       this->m_OutsideValue
       );