C# 中无法识别或不支持的数组类型异常

发布于 2024-12-01 08:49:40 字数 378 浏览 0 评论 0原文

可能的重复:
OpenCV C# 中的图像转换

WeightedImg.Bitmap.SetPixel(x, y, Color.FromArgb((int)Math.Ceiling(颜色 * R), (int)Math.Ceiling(color * G),(int)Math.Ceiling(color * B)));

这行代码产生上面的异常..有人知道解决方案吗? 例外是什么意思? 多谢

Possible Duplicate:
Image conversion in OpenCV C#

WeightedImg.Bitmap.SetPixel(x, y,Color.FromArgb((int)Math.Ceiling(color * R),
(int)Math.Ceiling(color * G),(int)Math.Ceiling(color * B)));

this line of code produces the exception above .. any one knows the solution ?
and what does the exception mean?
thanks a lot

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

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

发布评论

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

评论(2

信仰 2024-12-08 08:49:40

您需要设置 alpha 通道,如 *A*rgb
alpha通道设置颜色的透明度

You need to set the alphachannel, as in *A*rgb
The alphachannel set's the transparency of the color

梦在深巷 2024-12-08 08:49:40

您确实需要给我们更多的工作机会。这些变量是如何定义的?异常和堆栈跟踪打印是什么?例如,这相当于您发布的内容,在我的机器上可以作为魅力

        Bitmap b = new Bitmap("somefile.bmp");
        double color = 1, R = 2, G = 3, B = 4;
        int x = 1, y = 1;
        b.SetPixel(x, y, Color.FromArgb((int)Math.Ceiling(color * R), (int)Math.Ceiling(color * G), (int)Math.Ceiling(color * B)));

you really need to give us more to work on. how are those variables defined? what's the exception and stack trace print? this equivalent of what you're posting, for example, works as a charm on my machine

        Bitmap b = new Bitmap("somefile.bmp");
        double color = 1, R = 2, G = 3, B = 4;
        int x = 1, y = 1;
        b.SetPixel(x, y, Color.FromArgb((int)Math.Ceiling(color * R), (int)Math.Ceiling(color * G), (int)Math.Ceiling(color * B)));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文