@@ -1433,7 +1433,7 @@ static MagickBooleanType GetPeakSignalToNoiseRatio(const Image *image,
1433
1433
distortion [RedChannel ]= fabs (distortion [RedChannel ]) < MagickEpsilon ?
1434
1434
0.0 : 1.0 ;
1435
1435
else
1436
- distortion [RedChannel ]= (-10.0 * MagickLog10 (PerceptibleReciprocal (
1436
+ distortion [RedChannel ]= fabs (-10.0 * MagickLog10 (PerceptibleReciprocal (
1437
1437
distortion [RedChannel ])))/48.1647 ;
1438
1438
}
1439
1439
if ((channel & GreenChannel ) != 0 )
@@ -1443,7 +1443,7 @@ static MagickBooleanType GetPeakSignalToNoiseRatio(const Image *image,
1443
1443
distortion [GreenChannel ]= fabs (distortion [GreenChannel ]) <
1444
1444
MagickEpsilon ? 0.0 : 1.0 ;
1445
1445
else
1446
- distortion [GreenChannel ]= (-10.0 * MagickLog10 (PerceptibleReciprocal (
1446
+ distortion [GreenChannel ]= fabs (-10.0 * MagickLog10 (PerceptibleReciprocal (
1447
1447
distortion [GreenChannel ])))/48.1647 ;
1448
1448
}
1449
1449
if ((channel & BlueChannel ) != 0 )
@@ -1453,7 +1453,7 @@ static MagickBooleanType GetPeakSignalToNoiseRatio(const Image *image,
1453
1453
distortion [BlueChannel ]= fabs (distortion [BlueChannel ]) < MagickEpsilon ?
1454
1454
0.0 : 1.0 ;
1455
1455
else
1456
- distortion [BlueChannel ]= (-10.0 * MagickLog10 (PerceptibleReciprocal (
1456
+ distortion [BlueChannel ]= fabs (-10.0 * MagickLog10 (PerceptibleReciprocal (
1457
1457
distortion [BlueChannel ])))/48.1647 ;
1458
1458
}
1459
1459
if (((channel & OpacityChannel ) != 0 ) && (image -> matte != MagickFalse ))
@@ -1463,7 +1463,7 @@ static MagickBooleanType GetPeakSignalToNoiseRatio(const Image *image,
1463
1463
distortion [OpacityChannel ]= fabs (distortion [OpacityChannel ]) <
1464
1464
MagickEpsilon ? 0.0 : 1.0 ;
1465
1465
else
1466
- distortion [OpacityChannel ]= (-10.0 * MagickLog10 (PerceptibleReciprocal (
1466
+ distortion [OpacityChannel ]= fabs (-10.0 * MagickLog10 (PerceptibleReciprocal (
1467
1467
distortion [OpacityChannel ])))/48.1647 ;
1468
1468
}
1469
1469
if (((channel & IndexChannel ) != 0 ) && (image -> colorspace == CMYKColorspace ))
@@ -1473,7 +1473,7 @@ static MagickBooleanType GetPeakSignalToNoiseRatio(const Image *image,
1473
1473
distortion [BlackChannel ]= fabs (distortion [BlackChannel ]) <
1474
1474
MagickEpsilon ? 0.0 : 1.0 ;
1475
1475
else
1476
- distortion [BlackChannel ]= (-10.0 * MagickLog10 (PerceptibleReciprocal (
1476
+ distortion [BlackChannel ]= fabs (-10.0 * MagickLog10 (PerceptibleReciprocal (
1477
1477
distortion [BlackChannel ])))/48.1647 ;
1478
1478
}
1479
1479
return (status );
0 commit comments