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

BUG: Set the number of thread to 1 so as MeanShift filter to output always the...

BUG: Set the number of thread to 1 so as MeanShift filter to output always the same result for regression tests
parent e67825de
No related branches found
No related tags found
No related merge requests found
......@@ -155,6 +155,10 @@ int main(int argc, char * argv[])
filter->SetScale(scale);
// Software Guide : EndCodeSnippet
// For non regression tests, set the number of threads to 1
// because MeanShift results depends on the number of threads
filter->SetNumberOfThreads(1);
// Software Guide : BeginLatex
//
// The \doxygen{otb}{MeanShiftImageFilter} type is instantiated using the image
......
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