摘要: 有一段程序我调试了很久,直到今天一个偶然的灵感才想到问题的所在,事情是这样子的: 在MFC的View类里面有这么一段代码:void CMyView::OnTimer(UINT nIDEvent) { CMyDoc* pDoc = GetDocument(); if(pDoc->b_ShowContour) { DrawDynamicContours(); } else { boundaries.clear(); } CView::OnTimer(nIDEvent);}void CMyView::O... 阅读全文
posted @ 2012-03-19 21:02 Moondark 阅读(9422) 评论(0) 推荐(0) 编辑
摘要: 环境 Visual Studio 2010 + OpenCV 2.3.1 环境配置可参考下文http://www.opencv.org.cn/forum/viewtopic.php?f=1&t=14545 近来研究tracking相关问题,涉及到interest point的提取,应用到了"opencv2\features2d\features2d.hpp",然而,vs的IntelliSense没有报错,在编译的时候出现如下错误: 错误 2 error LNK2019: 无法解析的外部符号 "public: __thiscall cv::SurfFeatu 阅读全文
posted @ 2012-03-19 17:25 Moondark 阅读(9072) 评论(0) 推荐(0) 编辑