OpenCV - 如何在 Opencv 2.3 中定义 CvvImage 类型的变量?

发布于 2024-12-06 13:49:44 字数 490 浏览 0 评论 0原文

我正在编写一个程序来从相机捕获图像帧并将它们显示在 MFC 图片控制窗口上。我的程序在OpenCV 2.3Visual studio 2010中使用MFC

但我无法使用函数CvvImage。 它说它是未定义的。该函数位于 highgui.h 头文件下。当我检查头文件并将其与Opencv 1.0进行比较时,我发现这里没有定义这个函数。

当我在 opencv 1.0 和 Visual Studio 2008 上使用这个程序时,它工作正常。并执行。 但使用 Visual Studio 2010 和 opencv 2.3 则未定义。

请帮助使用 CvvImage 或告诉我 opencv 2.3 中使用的等效项。

我不想使用 IplImage。因为这样我就无法将图像框架放置在 MFC 图片控制窗口上。

谢谢

I'm writing a program to capture image frames from a camera and to dispay them on the MFC picture control window. My program is using MFC in OpenCV 2.3 and Visual studio 2010.

but I am not able to use the function CvvImage.
It says it is undefined. This function comes under the highgui.h header file. When I check the header file and compared it with Opencv 1.0 I saw that this function is not defined here.

When I use this program on opencv 1.0 and visual studio 2008 it works fine. and executes.
but using visual studio 2010 and opencv 2.3 it is not defined.

please help use the CvvImage or tell me the equivalent used in opencv 2.3.

I do no want to use IplImage. because then I am not able to place my image frame on the MFC picture control window.

Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

初见 2024-12-13 13:49:44

经过很多天的思考,我终于得到了答案。

我们需要做的就是添加一个类CvvImage.cpp和头文件CvvImage.h到打开的cv目录中。

在主程序中我们需要定义#include“CvvImage.h”

WEll after many days thinking i finally got the answer.

What we need to do it to add a class CvvImage.cpp and the header file CvvImage.h to the open cv directory.

and in the main program we need to define #include "CvvImage.h"

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