CV_COMP_CORREL not declared
时间:2019-10-24 19:51:47
收藏:0
阅读:309
在opencv3中可编译通过,但opencv4中无法编译,报错:
error: CV_COMP_CORREL was not declared in this scope.
是因为opencv4中CV_COMP_CORREL定义在types_c.h文件中,只需包含以下头文件即可。
#include <opencv2/imgproc/types_c.h>
原文:https://www.cnblogs.com/lukybee/p/11733727.html
评论(0)