您好,登錄后才能下訂單哦!
這篇文章主要介紹了如何在python3中使用PIL將圖片轉換成RGB圖片,億速云小編覺得不錯,現在分享給大家,也給大家做個參考,一起跟隨億速云小編來看看吧!
Python是一種編程語言,內置了許多有效的工具,Python幾乎無所不能,該語言通俗易懂、容易入門、功能強大,在許多領域中都有廣泛的應用,例如最熱門的大數據分析,人工智能,Web開發等。
from PIL import Image import numpy as np L_path='train/5509031.jpg' L_image=Image.open(L_path) out = L_image.convert("RGB") img=np.array(out) print(out.mode) print(out.size) print(img.shape)
然后就可以轉換了哈。
如果是大量的圖片呢,那就笨辦法,用循環判斷吧:
from PIL import Image from tqdm import tqdm import numpy as np root_path='data' for item in tqdm(examples): arr=item.strip().split('*') img_name=arr[0] image_path=os.path.join(root_path,img_name) img=Image.open(image_path) if(img.mode!='RGB'): img = img.convert("RGB") img=np.array(img) print(img_name) print(img.shape) # add your code
我的圖片路徑是通過一個txt文件讀取的,這里給出一些train.txt里面樣例:
train/1769512.jpg* postcard construction 67 mixed media epoxy collage 7 x 135 x 4* art||drawing||sculpture train/5020991.jpg* en el cuadro de honor de todas las 50appsalud en un grfico en espaol* mhealth train/3525659.jpg* information mogadishu port expansion turkish company* somalia
以上就是億速云小編為大家收集整理的如何在python3中使用PIL將圖片轉換成RGB圖片,如何覺得億速云網站的內容還不錯,歡迎將億速云網站推薦給身邊好友。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。