溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python更改圖像像素的方法

發(fā)布時間:2020-07-03 13:45:08 來源:億速云 閱讀:1551 作者:清晨 欄目:編程語言

這篇文章主要介紹python更改圖像像素的方法,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

在Python中,可以使用PIL圖像處理庫來更改圖像像素。方法是:1、利用PIL的load函數(shù)導入圖片;2、size方法獲取寬和高度;3、利用getpixel方法獲取圖像的像素值,putpixel方法設置圖像的像素值。

python更改圖像像素的方法

在做語義分割項目時,標注的圖片不合標準,而且類型是RGBA型,且是A的部分表示的類別,因此需要將該圖片轉(zhuǎn)化為RGB圖片

# -*- coding:utf8 -*-
import os
 
from PIL import Image
im = Image.open('123.png') #打開圖片
pix = im.load() #導入像素
width = im.size[0] #獲取寬度
height = im.size[1] #獲取長度
 
for x in range(width):
    for y in range(height):
        r,g,b,a = im.getpixel((x,y))	
        rgba=(r,g,b,a)
        if(a == 0):
            im.putpixel((x,y),(0,0,0,0))
        if(a == 255):
            im.putpixel((x,y),(255,255,255,255))
 
im = im.convert('RGB')
im.save('456.png')

批量處理的方法

# -*- coding:utf8 -*-
import os
from PIL import Image
 
path = 'SegmentationClass(RGBA)/'
savedpath = 'SegmentationClass/'
filelist = os.listdir(path)
for item in filelist:
    im = Image.open(path + item) #打開圖片
    width = im.size[0] #獲取寬度
    height = im.size[1] #獲取長度
 
    for x in range(width):
        for y in range(height):
            r,g,b,a = im.getpixel((x,y))	
            if(a == 0):
                im.putpixel((x,y),(0,0,0,0))
            if(a == 255):
                im.putpixel((x,y),(255,255,255,255))
    im = im.convert('RGB')
    im.save(savedpath + item)
    print('item of %s is saved '%(item))

以上是python更改圖像像素的方法的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關知識,歡迎關注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI