Skip to content
Snippets Groups Projects
Commit 15fd9974 authored by Rashad Kanavath's avatar Rashad Kanavath
Browse files

replace vcl_pow call by simple multiply

parent 411d5735
No related branches found
No related tags found
No related merge requests found
......@@ -150,7 +150,7 @@ SarRadiometricCalibrationFunction<TInputImage, TCoordRep>
if (m_ApplyLookupDataCorrection)
{
RealType lutVal = static_cast<RealType>(m_Lut->GetValue(index[0], index[1]));
sigma /= vcl_pow(lutVal, 2);
sigma /= lutVal * lutVal;
}
/** rescaling factor has effect only with CosmoSkymed Products */
......
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