OpenCV 学习笔记-day10 图像像素的逻辑操作 (Opencv中rectangle函数与Rect函数的用法以及位相关操作)
OpenCV学习笔记day10-图像像素的逻辑操作1.画矩形函数rectangle();Rect()函数是画出图像中的矩形2.位操作函数bitwise_and(m1,m2,dst);//与bitwise_or(m1,m2,dst);//或bitwise_not(m1,dst);//非取反操作bitwise_xor(m1,m2,dst);//异或代码显示效果day10-图像像素的逻辑操作1.画矩形函