Standard Parzen
Parzen with Linear RGB and Sigmoidal Contrast of 8 (Maybe this could be lower?)
Mitchell for reference
Generated using this script.
Code: Select all
#!/bin/sh
for f in blackman box catrom cubic gaussian hamming hann hermite kaiser lanczos mitchell parzen point quadratic sinc spline triangle;
do
#magick rose: -sample 1000% -define filter:blur=10 -define filter:filter="$f" -resize 100% -quality 9 10xrose-"$f"-conv.png
#magick rose: -define filter:filter="$f" -resize 1000% -quality 9 10xrose-"$f".png
magick rose: -colorspace rgb +sigmoidal-contrast 8 -define filter:filter="$f" -resize 1000% -sigmoidal-contrast 8 -colorspace srgb -quality 9 10xrose-"$f"-lrgb-sig8.png
done