在程序中模仿键盘?
我正在尝试使用 OpenCV 制作一个“视觉操纵杆”。我的计划是使用运动触发按钮,计算机会将其识别为键盘输入。因此,例如,如果用户触发屏幕上的空格按钮,则文本编辑器中可能会出现空格,或者角色可能会在游戏中跳跃(我们确实正在努力使这适用于模拟器)。有没有简单的方法来触发这些输入?
I'm trying to make a "vision joystick" using OpenCV. My plan is to have motion-triggered buttons which the computer would recognize as keyboard input instead. So, for example, if the user triggered the space button onscreen, a space might appear in a text editor, or a character may jump in a game (we're really trying to make this work for emulators). Is there any simple way to trigger these inputs?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信该方法将高度依赖于平台。例如,在 Windows 上,您应该使用 SendInput< /a> 函数。
I believe the method will be highly platform-dependent. On Windows, for instance, you should use the SendInput function.