cv2.error: OpenCV(4.4.0) C:\Users\appveyor\AppData\Local\Temp\1\pip-req-build-ykpa0m5d\opencv\modules\core\src\arithm.cpp:669: error: (-209:Sizes of input arguments do not match) The operation is neither 'array op array' (where arrays have the same size and the same number of channels), nor 'array op scalar', nor 'scalar op array' in function 'cv::arithm_op'
时间: 2023-08-28 14:21:27 浏览: 472
opencv-python-4.10.0.84.tar.gz
5星 · 资源好评率100%
这个错误通常是由于输入的两个数组大小或通道数不匹配,而导致的。请检查你的代码,确保输入的两个数组的大小和通道数相同。如果你使用的是OpenCV中的算术运算函数(如cv2.add()、cv2.subtract()等),请确保输入的两个数组大小相同。如果你使用的是数组和标量之间的算术运算,确保标量的通道数与数组的通道数相同。如果你仍然遇到困难,请提供更多的代码和错误信息,以便更好地帮助你解决问题。
阅读全文