./modules/imgproc/src/color.cpp:182: error: (-215:Assertion failed) !_src.empty() in function 'cvtColor'
时间: 2023-10-10 19:15:06 浏览: 53
IEEE Standard for Universal Verification Methodology Language Reference Manual
这个错误是由 OpenCV 库的 cvtColor 函数触发的。它表示输入的图像为空,即未成功加载或读取图像。
解决此问题的方法是确保你已经成功加载或读取了图像,并且将图像传递给 cvtColor 函数的输入参数。你可以检查图像路径或读取代码,确保图像成功加载或读取。另外,你可以在调用 cvtColor 之前使用 assert 或 if 条件语句检查输入图像是否为空。
阅读全文