我在 Xcode 中集成 c++ 代码。我在这条线上面临问题。
src = imread("ellipse.jpg");
if(! src.data ) // Check for invalid input
{
cout << "Could not open or find the image" << std::endl ;
cv::waitKey(5000);
}
我在资源文件夹中有图像。但它总是执行 if 条件。请帮我 。提前致谢 。