我正在使用 OpenCV 库,我想在单独的函数中克隆图片,但我无法向函数发送地址
IplImage* image = cvLoadImage( path, CV_LOAD_IMAGE_GRAYSCALE ); // loading is ok
showFoundPoints(image); // -> here it shows errors
...
//my function
int showFoundPoints(IplImage*image)
{...}
我得到了这个构建错误:
错误:从IplImage*' to non-scalar type
std::string' 请求的转换
我不明白为什么会有转换。它看起来很简单,但我真的不知道该怎么做。
感谢帮助。