图像运算(五)——混合(blending)
描述:两幅图像各占一定比例的进行混合成一个图像,但是两个占的百分比等于1,公式描述:O(i,j) = P * I1(i,j) + (1-P) * I2(i,j), 其中P就是混合比(blending ratio)Code: /** *Applies the image Blend operator on the specified image arrays,