在 Mathematica 中轻松去除图像中的 Alpha 通道

发布于 2024-11-01 04:08:14 字数 135 浏览 1 评论 0原文

在 Mathematica 中剥离 Alpha 通道(并可能将图像转换为灰度)的最简单方法是什么?

我想使用 ImageAssemble,但有些图像带有 Alpha 通道,有些则没有。有没有比直接操作 ImageData 更简单的内置方法?

What is the simplest way to strip the alpha channel (and possible convert images to greyscale) in Mathematica?

I would like to use ImageAssemble, but some of the images come with and some without an alpha channel. Is there a simpler built-in way than manipulating the ImageData directly?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

往事随风而去 2024-11-08 04:08:14

RemoveAlphaChannel 函数将执行此操作。

The RemoveAlphaChannel function will do this.

匿名的好友 2024-11-08 04:08:14

对于 Mathematica 7,我相信这是可行的:

ColorCombine@Most@ColorSeparate@# &

目前它并不强大,但可以添加类型检查。

For Mathematica 7, I believe this works:

ColorCombine@Most@ColorSeparate@# &

It's not robust at this point, but type checking could be added.

网白 2024-11-08 04:08:14

您的第二个问题(不确定是)转换为灰度是通过以下方式完成的:

ColorConvert[image, "Grayscale"]

Your second question (not sure it is) conversion to grayscale, is done with:

ColorConvert[image, "Grayscale"]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文