Skip to content

Commit 746f83b

Browse files
committed
Make the threashold higher.
1 parent 3a2f570 commit 746f83b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/check-image-decoding.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
orig=$(cat Makefile | grep "^${file}" | sed "s/^${file}: \(.*\)$/\1/")
5353
score=$(compare -metric PSNR "${orig}" "decoded/${file}.png" NULL: 2>&1 || true)
5454
echo " * ${file}: ${score}"
55-
if test $(echo "${score} >= 30.0" | bc -l) -eq 0; then
55+
if test $(echo "${score} >= 35.0" | bc -l) -eq 0; then
5656
exit -1
5757
fi
5858
fi

0 commit comments

Comments
 (0)