溫馨提示×

溫馨提示×

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

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

python如何在人物圖中添加水印

發(fā)布時間:2021-04-30 13:40:40 來源:億速云 閱讀:122 作者:小新 欄目:編程語言

這篇文章給大家分享的是有關(guān)python如何在人物圖中添加水印的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

python有哪些常用庫

python常用的庫:1.requesuts;2.scrapy;3.pillow;4.twisted;5.numpy;6.matplotlib;7.pygama;8.ipyhton等。

1、主要流程

素材準(zhǔn)備

人臉檢測與人臉關(guān)鍵點檢測

調(diào)整大小,添加帽子

2、步驟

(1)用dlib的正臉檢測器進行人臉檢測,用dlib提供的模型提取人臉的五個關(guān)鍵點:

# dlib人臉關(guān)鍵點檢測器
      predictor_path = "shape_predictor_5_face_landmarks.dat"
      predictor = dlib.shape_predictor(predictor_path)  
 
      # dlib正臉檢測器
      detector = dlib.get_frontal_face_detector()
 
      # 正臉檢測
      dets = detector(img, 1)
 
      # 如果檢測到人臉
      if len(dets)>0:  
          for d in dets:
              x,y,w,h = d.left(),d.top(), d.right()-d.left(), d.bottom()-d.top()
              # x,y,w,h = faceRect  
              cv2.rectangle(img,(x,y),(x+w,y+h),(255,0,0),2,8,0)
 
              # 關(guān)鍵點檢測,5個關(guān)鍵點
              shape = predictor(img, d)
              for point in shape.parts():
                  cv2.circle(img,(point.x,point.y),3,color=(0,255,0))
 
              cv2.imshow("image",img)
              cv2.waitKey()

(2)調(diào)整帽子的大小。

選擇兩個眼角點,找到中心作為放置帽子的X方向的參考坐標(biāo),Y方向的坐標(biāo)用面框上線的Y坐標(biāo)表示。然后我們根據(jù)檢測到的人臉大小調(diào)整帽子的大小,讓帽子的大小合適。

# 選取左右眼眼角的點
              point1 = shape.part(0)
              point2 = shape.part(2)
 
              # 求兩點中心
              eyes_center = ((point1.x+point2.x)//2,(point1.y+point2.y)//2)
 
              # cv2.circle(img,eyes_center,3,color=(0,255,0))  
              # cv2.imshow("image",img)
              # cv2.waitKey()
 
              #  根據(jù)人臉大小調(diào)整帽子大小
              factor = 1.5
              resized_hat_h = int(round(rgb_hat.shape[0]*w/rgb_hat.shape[1]*factor))
              resized_hat_w = int(round(rgb_hat.shape[1]*w/rgb_hat.shape[1]*factor))
 
              if resized_hat_h > y:
                  resized_hat_h = y-1
 
              # 根據(jù)人臉大小調(diào)整帽子大小
              resized_hat = cv2.resize(rgb_hat,(resized_hat_w,resized_hat_h))

(3)添加小圖標(biāo)

當(dāng)然有些同學(xué)的頭像不是人物或不能準(zhǔn)確的識別無關(guān),所有添加了標(biāo)識。(即在右下添加小圖標(biāo))。

小圖標(biāo)避免單調(diào),是從圖標(biāo)中隨機選擇一個:

圖標(biāo)位置也可以根據(jù)愛好調(diào)整大小和位置

layer.paste(logo, (img.size[0] - logo.size[0], img.size[1]-logo.size[1]))

代碼如下:

# 水印圖片
    num = random.randint(1, 5)
    logo = Image.open("img_icon/santa_" + str(num) + ".png")
    img = Image.open(imgPath)
    print(img.size, logo.size)
    # 圖層
    layer = Image.new("RGBA", img.size, (255, 255, 255, 0))
    layer.paste(logo, (img.size[0] - logo.size[0], img.size[1]-logo.size[1]))
    # 覆蓋
    img_after = Image.composite(layer, img, layer)
    # img_after.show()
    img_after.save(outImgePath)

感謝各位的閱讀!關(guān)于“python如何在人物圖中添加水印”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細(xì)節(jié)

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

AI