C# 中无法识别或不支持的数组类型异常
可能的重复:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要设置 alpha 通道,如 *A*rgb
alpha通道设置颜色的透明度
You need to set the alphachannel, as in *A*rgb
The alphachannel set's the transparency of the color
您确实需要给我们更多的工作机会。这些变量是如何定义的?异常和堆栈跟踪打印是什么?例如,这相当于您发布的内容,在我的机器上可以作为魅力
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