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

TEST: fix FastICA test on windows (bad use of local var)

parent ed0d3cf2
No related branches found
No related tags found
No related merge requests found
......@@ -77,8 +77,8 @@ int otbFastICAImageFilterTest ( int argc, char* argv[] )
return EXIT_FAILURE;
}
const char * inputImageName = parseResult->GetInputImage().c_str();
const char * outputImageName = parseResult->GetOutputImage().c_str();
std::string inputImageName = parseResult->GetInputImage();
std::string outputImageName = parseResult->GetOutputImage();
const unsigned int nbComponents = parseResult->IsOptionPresent("--NumComponents") ?
parseResult->GetParameterUInt("--NumComponents") : 0;
const unsigned int nbIterations = parseResult->IsOptionPresent("--NumIterations") ?
......
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