是否可以组合卷积矩阵来同时应用多个变换?
理论上,应该可以通过加法或乘法来组合变换或颜色矩阵(当涉及到这种数学时,我很蹩脚)。是否可以?
Theoretically it should be possible to combine transformation or color matrices, through addition or multiplication (I'm lame when it comes to such math). Is it possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是!在 Flash 中,卷积矩阵在 flash.geom 包。变换矩阵是一个
Matrix
,颜色矩阵是一个ColorTransform
。两者都实现了 concat 函数,让您可以乘以另一个矩阵的效果。It is! In Flash, the convolution matrices are defined in the flash.geom package. The transformation matrix is a
Matrix
and the color matrix is aColorTransform
. Both implement aconcat
function letting you multiply the effects of another matrix.