Skip to content

Commit bc4f748

Browse files
author
Cristy
committedMar 29, 2025·
correct PSNR metric
1 parent ba55740 commit bc4f748

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
 

‎magick/compare.c

+5-5
Original file line numberDiff line numberDiff line change
@@ -1433,7 +1433,7 @@ static MagickBooleanType GetPeakSignalToNoiseRatio(const Image *image,
14331433
distortion[RedChannel]=fabs(distortion[RedChannel]) < MagickEpsilon ?
14341434
0.0 : 1.0;
14351435
else
1436-
distortion[RedChannel]=(-10.0*MagickLog10(PerceptibleReciprocal(
1436+
distortion[RedChannel]=fabs(-10.0*MagickLog10(PerceptibleReciprocal(
14371437
distortion[RedChannel])))/48.1647;
14381438
}
14391439
if ((channel & GreenChannel) != 0)
@@ -1443,7 +1443,7 @@ static MagickBooleanType GetPeakSignalToNoiseRatio(const Image *image,
14431443
distortion[GreenChannel]=fabs(distortion[GreenChannel]) <
14441444
MagickEpsilon ? 0.0 : 1.0;
14451445
else
1446-
distortion[GreenChannel]=(-10.0*MagickLog10(PerceptibleReciprocal(
1446+
distortion[GreenChannel]=fabs(-10.0*MagickLog10(PerceptibleReciprocal(
14471447
distortion[GreenChannel])))/48.1647;
14481448
}
14491449
if ((channel & BlueChannel) != 0)
@@ -1453,7 +1453,7 @@ static MagickBooleanType GetPeakSignalToNoiseRatio(const Image *image,
14531453
distortion[BlueChannel]=fabs(distortion[BlueChannel]) < MagickEpsilon ?
14541454
0.0 : 1.0;
14551455
else
1456-
distortion[BlueChannel]=(-10.0*MagickLog10(PerceptibleReciprocal(
1456+
distortion[BlueChannel]=fabs(-10.0*MagickLog10(PerceptibleReciprocal(
14571457
distortion[BlueChannel])))/48.1647;
14581458
}
14591459
if (((channel & OpacityChannel) != 0) && (image->matte != MagickFalse))
@@ -1463,7 +1463,7 @@ static MagickBooleanType GetPeakSignalToNoiseRatio(const Image *image,
14631463
distortion[OpacityChannel]=fabs(distortion[OpacityChannel]) <
14641464
MagickEpsilon ? 0.0 : 1.0;
14651465
else
1466-
distortion[OpacityChannel]=(-10.0*MagickLog10(PerceptibleReciprocal(
1466+
distortion[OpacityChannel]=fabs(-10.0*MagickLog10(PerceptibleReciprocal(
14671467
distortion[OpacityChannel])))/48.1647;
14681468
}
14691469
if (((channel & IndexChannel) != 0) && (image->colorspace == CMYKColorspace))
@@ -1473,7 +1473,7 @@ static MagickBooleanType GetPeakSignalToNoiseRatio(const Image *image,
14731473
distortion[BlackChannel]=fabs(distortion[BlackChannel]) <
14741474
MagickEpsilon ? 0.0 : 1.0;
14751475
else
1476-
distortion[BlackChannel]=(-10.0*MagickLog10(PerceptibleReciprocal(
1476+
distortion[BlackChannel]=fabs(-10.0*MagickLog10(PerceptibleReciprocal(
14771477
distortion[BlackChannel])))/48.1647;
14781478
}
14791479
return(status);

0 commit comments

Comments
 (0)
Please sign in to comment.