您好,登錄后才能下訂單哦!
這篇文章主要講解了“numpy于Pillow互轉(zhuǎn)的方法是什么”,文中的講解內(nèi)容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“numpy于Pillow互轉(zhuǎn)的方法是什么”吧!
實驗代碼展示:
from PIL import Image, ImageDrawimport numpy as np im = Image.open("bryant.jpg")# im.show() im a = np.asarray(im)a.shape, a.dtype, a.min(), a.max()type(a.shape)im2 = Image.fromarray(a)# im2.show()im2# The crop method from the Image module takes four coordinates as input.# The right can also be represented as (left+width)# and lower can be represented as (upper+height).(left, upper, right, lower) = (500, 20, 900, 400)# Here the image "im" is cropped and assigned to new variable im_cropim_crop = im.crop((left, upper, right, lower))# im_crop.show()im_crop im(width, height) = (im.width // 2, im.height // 2)im_resized = im.resize((width, height))# im_resized.show()im_resized im.resize((200, 300),box=(500, 20, 900, 400))im draw = ImageDraw.Draw(im) draw.rectangle((500, 20, 900, 400),outline=(255,255,255),width=8,)im
運行結(jié)果展示:
感謝各位的閱讀,以上就是“numpy于Pillow互轉(zhuǎn)的方法是什么”的內(nèi)容了,經(jīng)過本文的學習后,相信大家對numpy于Pillow互轉(zhuǎn)的方法是什么這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。