Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想做一个简单的游戏,比如屏幕上会有一些图像,我会用手触摸它们。为此,我必须在框架中添加一些图像。我正在使用网络摄像头和捕获方法
frame = cap.QueryFrame(); frame.Draw("Hello, world", ref f, new System.Drawing.Point(10, 80), new Bgr(0, 255, 0))
但我不知道如何将新图像添加到框架中。我添加了一些文本,但我需要添加新的图像对象来获取对象的坐标,然后移动它。我怎样才能做到?
您可以按照这些说明在表单上创建ImageBox控件。然后,只需将控件指向您的框架:
ImageBox
imageBox1.Image = frame;
现在,每当您更新时frame,它应该会自动更新您的 GUI。
frame