Skip to content
Snippets Groups Projects
Commit ec031ab8 authored by Julien Michel's avatar Julien Michel
Browse files

ENH: Removing rounding to e-3

parent 9ddb09e2
No related branches found
No related tags found
No related merge requests found
......@@ -88,7 +88,7 @@ public:
* m_IlluminationCorrectionCoefficient
/ m_SolarIllumination;
outPixel = static_cast<TOutput>( vcl_floor((temp+0.0005)*1000.)/1000.);
outPixel = static_cast<TOutput>( temp );
return outPixel;
}
......
......@@ -97,7 +97,7 @@ public:
temp = static_cast<double>(inPixel)*m_Coefficient + m_Residu;
temp2 = temp / (1. + m_SphericalAlbedo * temp);
outPixel = static_cast<TOutput>( vcl_floor((temp2+0.0005)*1000.)/1000.);
outPixel = static_cast<TOutput>( temp2 );
return outPixel;
}
......
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