Re: BiCubic Interpolation does not match any known filter!
Posted: 2012-06-04T22:01:31-07:00
Do you know of any application that uses a different interpolation for alpha, when doing the same operation on color channels?
Note that images can have multiple alpha's, as different masking, but only one (the primary) can be applied to colors. Excatly how multiple alphas should be telt with is a problem.
Note that the division 1/alpha is actually 1/{resultant alpha} and is because the color channel themselves are multipled by alpha*weight during the interpolation. The same alpha blending happens in composition.
See SVG composition formulas.
http://www.w3.org/TR/2009/WD-SVGComposi ... ompositing
It is done to ensure that you don't get contributions of 'fully transparent colors' into the result visible color, and so producing halos, such as shown in the very OLD bug reports
http://www.imagemagick.org/Usage/bugs/resize_halo/
and what was previously possible with blur and default channel setting (before the switch to using morphology blur)
http://www.imagemagick.org/Usage/bugs/blur_trans/
Note that images can have multiple alpha's, as different masking, but only one (the primary) can be applied to colors. Excatly how multiple alphas should be telt with is a problem.
Note that the division 1/alpha is actually 1/{resultant alpha} and is because the color channel themselves are multipled by alpha*weight during the interpolation. The same alpha blending happens in composition.
See SVG composition formulas.
http://www.w3.org/TR/2009/WD-SVGComposi ... ompositing
It is done to ensure that you don't get contributions of 'fully transparent colors' into the result visible color, and so producing halos, such as shown in the very OLD bug reports
http://www.imagemagick.org/Usage/bugs/resize_halo/
and what was previously possible with blur and default channel setting (before the switch to using morphology blur)
http://www.imagemagick.org/Usage/bugs/blur_trans/