用opencv实现图片颜色反转

# 灰度图片颜色翻转效果
import  cv2
import numpy as np
img = cv2.imread("1.jpg",1)
imgInfo = img.shape
height = imgInfo[0]
width = imgInfo[1]
gray = cv2.cvtColor(img,cv2.COLOR_BGR2GRAY)
dst = np.zeros((height,width,1),np.uint8)
for i in range(0,height):
    for j in range(0,width):
        grayPixel = gray[i,j]
        dst[i,j] = 255 - grayPixel
cv2.imshow("666",dst)
cv2.waitKey(0)





# 彩色图片亚瑟反转效果
import  cv2
import numpy as np
img = cv2.imread("1.jpg",1)
imgInfo = img.shape
height = imgInfo[0]
width = imgInfo[1]
dst = np.zeros((height,width,3),np.uint8)
for i in range(0,height):
    for j in range(0,width):
        (b,g,r) = img[i,j]
        dst[i,j] =(255-b,255-g,255-r)
cv2.imshow("666",dst)
cv2.waitKey(0)

猜你喜欢

转载自blog.csdn.net/qq_15256443/article/details/84098746