Skip to content
Snippets Groups Projects
Commit 143ce938 authored by Cyrille Valladeau's avatar Cyrille Valladeau
Browse files

ENH: suppress message

parent 48b44724
No related branches found
No related tags found
No related merge requests found
......@@ -222,10 +222,8 @@ private:
inputMax[i] = histogramsGenerator->GetOutput()->GetNthElement(i)->Quantile(0, 0.98);
}
otbAppLogDEBUG( << "Min/Max computation done : min=" << inputMin
otbAppLogDEBUG( << std::setprecision(5) << "Min/Max computation done : min=" << inputMin
<< " max=" << inputMax );
std::cout << "Min/Max computation done : min=" << inputMin
<< " max=" << inputMax <<std::endl;
rescaler->AutomaticInputMinMaxComputationOff();
rescaler->SetInputMinimum(inputMin);
......
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