Especially as it seems to generate a very very strong 'negative' halo (deep first lobe).
test image (magnified) -- from IM examples resize pages
Code: Select all
convert xc: -bordercolor gray15 -border 2x0 pixel.gif
convert pixel.gif -scale 150 pixel_mag.gif
This is a magnification of the image using a bicubic interpolation (using IMv7 - see IM Examples, see interpolation for IMv6 methods - same results though)
Code: Select all
magick pixel.gif -interpolate BiCubic -interpolative-resize 150 pixel_bicubic.png
im_profile pixel_bicubic.png pixel_bicubic_profile.png
On the other hand these are the result for a Catrom filter.
Code: Select all
convert pixel.gif -filter catrom -resize 150 pixel_catrom.png
im_profile pixel_catrom.png pixel_catrom_profile.png
As you can see the bicubic profile has a VERY deep first lobe. Far too deep for catrom. And it does not show a disjoint look that you would get for a lagrange filter. In fact NO filter I know of is anywhere as deep as catrom!
It looks to me that bicubic is currently broken!!!! And probably has been for a long time!