如何在 Gtk+/Gtkmm 中显示 OpenCV IplImage?
我有 IplImage 形式的图像,我想在小型 Gtkmm 应用程序中显示它们。 如何将它们转换为 Gtk 可以显示的内容?
I've got images as IplImage that I want to display in a small Gtkmm application. How can I convert them to something Gtk can display?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将OP的解决方案发布为答案:
Posting OP's solution as answer:
您可以使用
gdk_new_pixbuf_from_data()
创建一个新的pixbuf,并向其传递与IplImage格式相对应的图像格式参数。 IplImage 图像数据通过imageData
字段访问。这里有一些来自 Gtk 论坛的示例代码。
You can create a new pixbuf using
gdk_new_pixbuf_from_data()
passing it the image format parameters corresponding to the format of the IplImage. The IplImage image data is accessed via theimageData
field.Here is some example code from a Gtk forum.