如题,想对一张图片反色,即白色变为黑色,黑色变为白色。
实现的方法其实挺多的,这里分享两个快速的。
1、直接运算
img = 255 - img
2、调用函数
import cv2 img = cv2.bitwise_not(img)