DSP

DM6446 DSP端OPENCV移植错误

2019-07-13 18:17发布



EMCV DM642移植 ccs3.3

帖子blueseaky » 2011-07-17 14:37 把原有的工程改为C++工程后编译链接通过,然后加入 cvCanny(Image,ImageOut,50,150,3); 这句后就出现链接错误:



undefined first referenced
symbol in file
--------- ----------------
_cvCanny F:\VideoProcess\Debug\VideoProcess.obj
>> error: symbol referencing errors - './Debug/VideoProcess.out' not built

检查cvCanny函数声明在cv.h中:/* Runs canny edge detector */
CVAPI(void) cvCanny( const CvArr* image, CvArr* edges, double threshold1,double threshold2, int aperture_size CV_DEFAULT(3) );
这个头文件中也已经有
#ifdef __cplusplus
extern "C" {
#endif等语句。
调用其中的其他函数也是类似的链接错误。

请教大虾们该如何使用其中的函数来进行图像处理呢?
帖子Shiqi Yu » 2011-07-17 15:31 因为cvCanny未实现

上面这个是在OPENCV中文网站上找到的一个贴,前几天因为要把OPENCV弄到DSP上面去,遇到类似的错误提示
就是
undefined first referenced
symbol in file
--------- ----------------
_cvCanny F:\VideoProcess\Debug\VideoProcess.obj
>> error: symbol referencing errors - 这种,版主回复说的是这些函数没有实现,但我找了下好像我调用的有些函数在.cpp文件里面有函数体的,不知具体什么情况,有待验证