在 MFC 对话框应用程序中绘制 IplImage
我有一个 MFC 对话框应用程序,用作使用 OpenCV 2.1 进行某些图像处理的前端。我想不再使用 cvShowImage 并将图像直接放置在对话框或合适的容器上。我找到了使用 MFC SDI 应用程序和 View/Doc 模型的技术的示例,但我不知道如何转换它。
我很好奇是否有人这样做过和/或知道哪里有这样做的例子?
另外,这是我的第一个 MFC 应用程序。
谢谢大家。
I have an MFC dialog application that I am using as the front end for some image processing with OpenCV 2.1. I would like to move away from using the cvShowImage and place my image directly on the dialog box or a suitable container. I've found examples that with a technique using an MFC SDI application with a View/Doc model, but I can't figure out how to convert that.
I'm curious if anyone has done this and/or knows where an example may live that does this?
Also, this is my first MFC application.
Thanks all.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
highgui中有一个CvvImage类型,带有drawtoHDC(或simialr)函数,可以绘制位图
There is a CvvImage type in highgui with a drawtoHDC(or simialr) function that will draw into a bitmap