【debug】cv2.bitwise_or报错解决:cv2.error: OpenCV(4.6.0) /io/opencv/modules/core/src/arithm.cpp:212: error

问题

运行代码到cv2.bitwise_or报错如下信息:

cv2.error: OpenCV(4.6.0) /io/opencv/modules/core/src/arithm.cpp:212: 
error: (-209:Sizes of input arguments do not match) The operation is 
neither 'array op array' (where arrays have the same size and type),
 nor 'array op scalar', nor 'scalar op array' in function 'binary_op'

解决方案

c= cv2.bitwise_xor(a, b)

报这个错就是说明,输入参数a与b的尺寸不一样,只需要检查下尺寸,调整成尺寸一致就可以了。

整理不易,欢迎一键三连!

你可能感兴趣的:(基本知识,opencv,计算机视觉,人工智能)