我在Qt5.7中使用opencv3.2。以下是我的代码的一部分:
for(int i=0;i<contour[0].size();i++)
{
if(contour[0][i].x>xmax) xmax = contour[0][i].x;
if(contour[0][i].x<xmin) xmin = contour[0][i].x;
if(contour[0][i].y>ymax) ymax = contour[0][i].y;
if(contour[0][i].y<ymin) ymin = contour[0][i].y;
}
int step = cvRound(contour[0].size()/16); #this line causes the error
建筑物错误是:
error C2668: 'cvRound': ambiguous call to overloaded function
C:\opencv-3.2.0\mybuild\include\opencv2/core/fast_math.hpp(232): note: could be 'int cvRound(int)'
C:\opencv-3.2.0\mybuild\include\opencv2/core/fast_math.hpp(201): note: or 'int cvRound(float)'
C:\opencv-3.2.0\mybuild\include\opencv2/core/fast_math.hpp(93): note: or 'int cvRound(double)'
任何人都可以帮助解决该错误?
最佳答案
尝试投射回合的参数。您可以在它们前面书写( float )。这样,您可以帮助编译器找到正确的Round函数(例如,采用float参数的函数)
关于opencv - opencv:C2668: 'cvRound':对重载函数的歧义调用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48673249/