EmguCV 将新图像插入到捕获的帧中
我想做一个简单的游戏,比如屏幕上有一些图像,我会用手触摸它们。为此,我必须在框架中添加一些图像。我正在使用网络摄像头和捕获方法,
frame = cap.QueryFrame();
frame.Draw("Hello, world", ref f, new System.Drawing.Point(10, 80), new Bgr(0, 255, 0))
但我不知道如何将新图像添加到框架中。我添加了一些文本,但我需要添加新的图像对象来获取对象的坐标,然后移动它。我怎样才能做到呢?
I want to to make a simple game like on screen will be some images and ,I will touch them with my hand .For this I must add some images to frame.I am using web-cam and Capture method
frame = cap.QueryFrame();
frame.Draw("Hello, world", ref f, new System.Drawing.Point(10, 80), new Bgr(0, 255, 0))
But I don`t know how can I add new image to frame . I added Some text but I need to add new image object to get coordinate of object and then move it . How can I make it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以按照这些说明在表单上创建
ImageBox
控件< /a>.然后,只需将控件指向您的框架:现在,每当您更新
frame
时,它都会自动更新您的 GUI。You could create an
ImageBox
control on your form by following these instructions. Then, just point the control to your frame:Now whenever you update
frame
, it should automatically update your GUI.