gpt4 book ai didi

python - 替换照片中除现有黑白像素之外的所有颜色

转载 作者:太空宇宙 更新时间:2023-11-04 00:02:40 25 4
gpt4 key购买 nike

我想要一种将照片的所有像素更改为白色的方法,除了照片中已经存在的白色或黑色像素。

我尝试使用 PIL,但找不到。

最佳答案

i would like the way to change all of the pixels of a photo to white, except the pixels that white or black that were already in the photo.

所以基本上您想将除黑色以外的所有像素都更改为白色,对吗?如果是这样,那么下面的工作(注意:它期望 cv2lib 安装在你的机器上)

import cv2
import numpy as np

img = cv2.imread('my_img.jpeg')
img[img != 0] = 255 # change everything to white where pixel is not black
cv2.imwrite('my_img2.jpeg', img)

关于python - 替换照片中除现有黑白像素之外的所有颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55192340/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com