我正在尝试构建一个使用SURF匹配算法的OpenCV程序,代码在以下链接中:
http://feelmare.blogspot.ro/2011/10/sift-matching-c-source-code-using.html
但是,我收到了一些关于某些外部符号的错误:_cvExtractSurf
和_cvSURFParams
。
error LNK2019: unresolved external symbol _cvExtractSURF referenced in function "public: bool __thiscall CMareMatchingClass::ExtractBGsurf(struct _IplImage *)" (?ExtractBGsurf@CMareMatchingClass@@QAE_NPAU_IplImage@@@Z)
error LNK2019: unresolved external symbol _cvSURFParams referenced in function "public: __thiscall CMareMatchingClass::CMareMatchingClass(void)" (??0CMareMatchingClass@@QAE@XZ)
你知道我怎么能解决这个错误?我在Windows 7 - 64位的visual studio 2010中使用opencv 2.3.0运行代码。