gpt4 book ai didi

opencv:C2668: 'cvRound':对重载函数的模糊调用

转载 作者:行者123 更新时间:2023-12-02 17:37:41 30 4
gpt4 key购买 nike

我在 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)'

任何人都可以帮助解决错误?

最佳答案

尝试转换 Round 的参数。你可以在它们前面写( float )。这样,您可以帮助编译器找到正确的 Round 函数(例如,采用 float 参数的函数)

关于opencv:C2668: 'cvRound':对重载函数的模糊调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48673249/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com