Skip to content
Snippets Groups Projects
Commit e9f71283 authored by Julien Malik's avatar Julien Malik
Browse files

BUG: when the expression is empty, an exception is thrown but the variable...

BUG: when the expression is empty, an exception is thrown but the variable list is correctly updated
parent 95a61745
Branches 1980-upgrade-gdal-proj-and-geotiff-in-superbuild
No related tags found
No related merge requests found
......@@ -73,28 +73,25 @@ template<class TInputImage, class TOutputImage, class TFunction>
std::vector<std::string> MaskMuParserFilter<TInputImage, TOutputImage, TFunction>::GetVar()
{
std::vector<std::string> varList;
FunctorPointer tempFunctor = FunctorType::New();
tempFunctor->SetExpression(m_Expression);
FunctorType& functor = *tempFunctor;
try
{
// Create a temporary functor to get the variable list
FunctorPointer tempFunctor = FunctorType::New();
tempFunctor->SetExpression(m_Expression);
FunctorType& functor = *tempFunctor;
// Run the functor to update the variable list
functor(this->GetInput()->GetPixel(this->GetInput()->GetBufferedRegion().GetIndex()));
const std::map<std::string, double*>& varMap = functor.GetVar();
std::map<std::string, double*>::const_iterator it;
for (it = varMap.begin(); it != varMap.end(); ++it)
{
varList.push_back( it->first );
}
}
catch (itk::ExceptionObject& err)
{
itkDebugMacro(<< err);
}
const std::map<std::string, double*>& varMap = functor.GetVar();
std::map<std::string, double*>::const_iterator it;
for (it = varMap.begin(); it != varMap.end(); ++it)
{
varList.push_back( it->first );
}
return varList;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment