X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2Ffpa%2FImage%2FFunctors%2FRegionGrowThresholdFunction.h;h=6da586d2249271f1017dcf78399993d2846d7bb9;hb=972dd44060dfff40ba3daab899c6365445f6de7e;hp=44cccc274e083f7408c976569bcfc80ff7a735b3;hpb=2479b55370fe1bec58d94faa3cc268bac419f6d6;p=FrontAlgorithms.git diff --git a/lib/fpa/Image/Functors/RegionGrowThresholdFunction.h b/lib/fpa/Image/Functors/RegionGrowThresholdFunction.h index 44cccc2..6da586d 100644 --- a/lib/fpa/Image/Functors/RegionGrowThresholdFunction.h +++ b/lib/fpa/Image/Functors/RegionGrowThresholdFunction.h @@ -53,9 +53,12 @@ namespace fpa { */ 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 + this->m_LowerThreshold <= v && v < this->m_UpperThreshold ); // TODO: } // fi