91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

怎么使用Python畫圖紀念黃家駒

發布時間:2022-02-23 10:39:14 來源:億速云 閱讀:186 作者:iii 欄目:開發技術

這篇文章主要介紹“怎么使用Python畫圖紀念黃家駒”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“怎么使用Python畫圖紀念黃家駒”文章能幫助大家解決問題。

思路:

運用 PIL 的 Image 模塊與 turtle 模塊讀取并重新畫出圖像

就是讀取一張有人像的圖片,然后通過循環對比,記錄下人各行人像的像素坐標,然后再通過 turtle 畫出大概的人像輪廓。

Image 模塊有直接顯示輪廓的函數,而且對于從圖象中識別出人像,這個對于小白太難了,所以就選取黑白或者是色彩單一、含人像的圖像來識別。

步驟:

步驟操作用到的庫
1讀取圖像,通過遍歷每一行像素記錄并對比,得到畫圖所需的人像‘坐標’PIL
2根據所得到的坐標,調用 turtle 庫畫圖turtle
第一步,讀取圖片,獲得畫圖坐標

獲取坐標是逐行遍歷像素的過程,便利時記錄每一行像素中非白色(白色為背景色)的像素條的始末坐標(X1X2)。 對比時,當前像素與同行的下一個像素進行比較,如果兩個像素值不同,且有一像素為背景色,那么記錄非背景色的橫坐標。 記錄時,整張圖的數據暫時保存在一個列表中,該列表由 n 個列表組成(n 為圖像像素行數),這 n 個列表存著對應行的所有非背景色像素條的始末坐標。

源碼
from PIL import Image
import turtle as t


def get_lst(img_path):
    imgf = Image.open(img_path)  # 讀取圖像
    global size
    print(size:= imgf.size) # 獲取圖像尺寸/大小
    pix = imgf.load()
    lst = [[] for i in range(size[1])] # 構造空列表
    for y in range(0, size[1]): # 從第一行開始循環
        index = 0
        for x in range(0, size[0]-1): # 循環第y行的每一個像素
            # 如果當前像素與下一個像素值不同且兩者有一為背景色,則記錄坐標
            if pix[x, y] != pix[x+1, y] and (255, 255, 255, 255) in [pix[x, y], pix[x+1, y]]:
                if index == 0: # index值為0說明是像素條起始坐標
                    lst[y].append([x+1, ])
                    index += 1
                else: # index值為1說明記錄的是像素條結束坐標
                    lst[y][-1].append(x)
                    index = 0
    return lst
第二步,畫圖

得到了每一個像素條的始末坐標后,就可以逐行畫圖了

源碼
def paint(lst):
    fontc = 'whitesmoke' # 右邊字的顏色
    manc = 'black' #'dimgrey' 人像的顏色
    t.setup(width=size[0]+40, height=size[1]) # 繪圖窗口大小
    t.screensize(bg='oldlace') # 畫布背景色
    t.bgpic(r'c:\\users\\pxo\\desktop\\bg.png') # 畫布背景圖
    t.speed(333) #畫畫速度 據說范圍[1,10]
    for y in range(0, size[1]):
        # 遍歷每一行
        t.pencolor(manc)
        for line in lst[y]:
            # 遍歷每一個像素條
            if line[0] > 364 and 144 < y < 495: # 這個是判斷是否是右邊的字
                t.pencolor(fontc)
            # 下面是畫像素條
            t.penup()
            t.goto(line[0]-size[0]//2, (size[1]-y)-size[1]//2)
            t.pendown()
            t.goto(line[1]-size[0]//2, (size[1]-y)-size[1]//2)
    t.mainloop()
開始:
if __name__ == '__main__':
    img_path = r'c:\\users\\pxo\\desktop\\jh.png' # 圖像地址
    lst = get_lst(img_path)
    paint(lst)

這樣就實現了使用 Python Turtle+PIL 繪制黃家駒效果。

隨機線條實現方式:

from PIL import Image
import turtle as t
from random import choice




def get_lst(img_path):
    imgf = Image.open(img_path)
    global size
    print(size:= imgf.size)
    pix = imgf.load()
    lst = [[] for i in range(size[1])]
    for y in range(0, size[1]):
        index = 0
        for x in range(0, size[0]-1):
            if pix[x, y] != pix[x+1, y] and (255, 255, 255, 255) in [pix[x, y], pix[x+1, y]]:
                if index == 0:
                    lst[y].append([y, x+1, ]) # 這里在每一個像素條的數據中加入了其縱坐標y
                    index += 1
                else:
                    lst[y][-1].append(x)
                    index = 0
    # 這里也改了,返回的數據列表的子元素是所有單獨的像素條,而不是某一行像素條的總和
    lt = []
    for i in lst:
        for j in i:
            if j:
                lt.append(j)
    return lt




def paint(lst):
    fontc = 'darkorange'
    manc = 'black' #'dimgrey'
    t.setup(width=size[0]+40, height=size[1]+40)
    t.screensize(bg='oldlace')
    #t.bgpic(r'c:\\users\\pxo\\desktop\\bg.png')
    t.speed(330)
    cnt = len(lst)
    lt = [i for i in range(cnt)] # 弄一個種子列表,理解為存取位置
    flst = []
    for i in range(cnt):
        del lt[lt.index(index:=choice(lt))] #獲取并刪除一個隨機位置
        line = lst[index]  # 從所有線條中得到一條隨機線條(像素條)
        y = line[0]
        x1, x2 = line[1], line[2]
        t.pencolor(manc)
        if x1 > 364 and 144 < y < 495:
            flst.append(line)
            continue
        t.penup()
        t.goto(x1-size[0]//2, (size[1]-y)-size[1]//2)
        t.pendown()
        t.goto(x2-size[0]//2, (size[1]-y)-size[1]//2)
    new_flst = sorted(flst[:-80], reverse=True)
    for line in new_flst:
        y = line[0]
        x1, x2 = line[1], line[2]
        t.pencolor(fontc)
        t.penup()
        t.goto(x1-size[0]//2, (size[1]-y)-size[1]//2)
        t.pendown()
        t.goto(x2-size[0]//2, (size[1]-y)-size[1]//2)
    t.hideturtle()
    t.mainloop()




if __name__ == '__main__':
    img_path = r'c:\\users\\pxo\\desktop\\jh.png'
    lst = get_lst(img_path)
    paint(lst)

關于“怎么使用Python畫圖紀念黃家駒”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。

向AI問一下細節

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

AI

铜川市| 东海县| 宁远县| 普兰店市| 周宁县| 镇巴县| 吴忠市| 黄平县| 颍上县| 汉阴县| 馆陶县| 潍坊市| 且末县| 清徐县| 林州市| 怀集县| 平原县| 神农架林区| 饶阳县| 塔河县| 庆安县| 三河市| 巴楚县| 大竹县| 海口市| 临海市| 观塘区| 潜江市| 抚顺市| 油尖旺区| 西畴县| 十堰市| 崇信县| 利川市| 台北市| 邹城市| 灌阳县| 敦化市| 凤冈县| 望都县| 清远市|