OpenNI + OpenCV + Qt
我正在尝试使用 Kinect (OpenNI) 制作一个应用程序,使用 GUI 处理图像 (OpenCV)。
我测试了 OpenNI+OpenCV 和 OpenCV+Qt
通常,当我们使用 OpenCV+Qt 时,我们可以制作一个 QWidget 来显示相机的内容(VideoCapture)。捕获帧并将新帧的查询更新到设备。
对于 OpenNI 和 OpenCV,我看到使用 for 循环从 Kinect 传感器(图像、深度)提取数据的示例,但我不知道如何使这种提取路由模式变得简单。我的意思是,类似于 OpenCV 帧查询。
这个想法是将从 Kinect 捕获的图像嵌入到 QWidget 中。 QWidget 将有(目前)2 个按钮“启动 Kinect”和“退出”……并且位于“绘画”部分下方以显示捕获的数据。
有什么想法吗?
I'm trying to make an app using Kinect (OpenNI), processing the image (OpenCV) with a GUI.
I tested de OpenNI+OpenCV and OpenCV+Qt
Normally when we use OpenCV+Qt we can make a QWidget to show the content of the camera (VideoCapture) .. Capture a frame and update this querying for new frames to device.
With OpenNI and OpenCV i see examples using a for cycle to pull data from Kinect Sensors (image, depth) , but i don't know how to make this pulling routing mora straightforward. I mean, similar to the OpenCV frame querying.
The idea is embed in a QWidget the images captured from Kinect. The QWidget will have (for now) 2 buttons "Start Kinect" and "Quit" ..and below the Painting section to show the data captured.
Any thoughs?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试使用 QTimer 类以固定时间间隔查询 kinect。在我的应用程序中,我使用下面的代码。
然后要查询框架,您可以使用标签小部件。我在下面发布示例代码:
You can try the QTimer class to query the kinect at fixed time intervals. In my application I use the code below.
Then to query the frame you can use the label widget. I'm posting an example code below: