Skip to content
Snippets Groups Projects
Commit 9c3019a5 authored by Romain Garrigues's avatar Romain Garrigues
Browse files

Modifications sur le setprecision (ajout de l'entete <iomanip> et std:: devant setprecision)

parent 41a9e177
Branches
Tags
No related merge requests found
......@@ -23,6 +23,7 @@ PURPOSE. See the above copyright notices for more information.
#include "otbMacro.h"
#include "itkMacro.h"
#include <sstream>
#include <iomanip>
namespace otb
{
......@@ -614,7 +615,7 @@ namespace otb
oss<<index<<" (image position)"<<std::endl;
PointType point;
m_InputImage->TransformIndexToPhysicalPoint(index,point);
oss <<point<<" (physical coordinates)"<<std::endl;
oss << std::setprecision(12) << point<<" (physical coordinates)"<<std::endl;
if(m_InputImage->GetBufferedRegion().IsInside(index))
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment