关于MFC的一点配置

1. Visual Studio 2008 Express  没有 MFC 组件,需要下一个完整的 VS 2008

 

2. 使用 MFC前要 这样写:#define _AFXDLL

例如:

 

#define _AFXDLL
#include <afxwin.h>

 

#include "cv.h"
#include "highgui.h"

 

注意,要在OpenCV的头文件前就include ,不然会出错的。

你可能感兴趣的:(express,mfc,include)