From 0d94c6c40728776ea1db6347a14606b044e25abc Mon Sep 17 00:00:00 2001 From: David Sarrut Date: Fri, 29 Jul 2011 15:19:36 +0200 Subject: [PATCH] Add options for threshold --- .../clitkExtractLymphStationsFilter.txx | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/segmentation/clitkExtractLymphStationsFilter.txx b/segmentation/clitkExtractLymphStationsFilter.txx index 520038c..5f9bef0 100644 --- a/segmentation/clitkExtractLymphStationsFilter.txx +++ b/segmentation/clitkExtractLymphStationsFilter.txx @@ -351,6 +351,17 @@ SetFuzzyThreshold(std::string station, std::string tag, double value) //-------------------------------------------------------------------- +//-------------------------------------------------------------------- +template +void +clitk::ExtractLymphStationsFilter:: +SetThreshold(std::string station, std::string tag, double value) +{ + m_Threshold[station][tag] = value; +} +//-------------------------------------------------------------------- + + //-------------------------------------------------------------------- template double @@ -372,6 +383,27 @@ GetFuzzyThreshold(std::string station, std::string tag) //-------------------------------------------------------------------- +//-------------------------------------------------------------------- +template +double +clitk::ExtractLymphStationsFilter:: +GetThreshold(std::string station, std::string tag) +{ + if (m_Threshold.find(station) == m_Threshold.end()) { + clitkExceptionMacro("Could not find options for station "+station+" in the list (while searching for tag "+tag+")."); + return 0.0; + } + + if (m_Threshold[station].find(tag) == m_Threshold[station].end()) { + clitkExceptionMacro("Could not find options "+tag+" in the list of Threshold for station "+station+"."); + return 0.0; + } + + return m_Threshold[station][tag]; +} +//-------------------------------------------------------------------- + + //-------------------------------------------------------------------- template void -- 2.49.0