EmguCV 将新图像插入到捕获的帧中

发布于 2024-09-01 22:17:14 字数 318 浏览 10 评论 0原文

我想做一个简单的游戏,比如屏幕上有一些图像,我会用手触摸它们。为此,我必须在框架中添加一些图像。我正在使用网络摄像头和捕获方法,

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 技术交流群。

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

发布评论

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

评论(1

救赎№ 2024-09-08 22:17:14

您可以按照这些说明在表单上创建 ImageBox 控件< /a>.然后,只需将控件指向您的框架:

imageBox1.Image = frame;

现在,每当您更新 frame 时,它都会自动更新您的 GUI。

You could create an ImageBox control on your form by following these instructions. Then, just point the control to your frame:

imageBox1.Image = frame;

Now whenever you update frame, it should automatically update your GUI.

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