Skip to content
Snippets Groups Projects
Commit 56813a43 authored by Thomas Feuvrier's avatar Thomas Feuvrier
Browse files

Modification affichage des résultats : pas de +10 mais affichage complet (fixed)

Car erreur comparaison tolérance : sous nemo 1.475e+07 et sous MinGW et Visual 1.475e+007.
parent 3a73e546
Branches
Tags
No related merge requests found
......@@ -53,6 +53,8 @@ int otbStreamingStatisticsImageFilter(int argc, char * argv[])
file.open(outfname);
file<<"Minimum: "<<filter->GetMinimum()<<std::endl;
file<<"Maximum: "<<filter->GetMaximum()<<std::endl;
file<<std::fixed;
file.precision(5);
file<<"Sum: "<<filter->GetSum()<<std::endl;
file<<"Mean: "<<filter->GetMean()<<std::endl;
file<<"Sigma: "<<filter->GetSigma()<<std::endl;
......
......@@ -55,6 +55,8 @@ int otbStreamingStatisticsVectorImageFilter(int argc, char * argv[])
file.open(outfname);
file<<"Minimum: "<<filter->GetMinimum()<<std::endl;
file<<"Maximum: "<<filter->GetMaximum()<<std::endl;
file<<std::fixed;
file.precision(5);
file<<"Sum: "<<filter->GetSum()<<std::endl;
file<<"Mean: "<<filter->GetMean()<<std::endl;
file<<"Covariance: "<<filter->GetCovariance()<<std::endl;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment