アニメの顔を切り抜く
アニメ画像から顔を切り抜く方法です
アニメデータセットをつくりたい
画風変換などで、アニメ画像のデータセットを作るときに、顔だけ切り抜きたい時があります。
大量の画像を自動で処理したい。
animefaceで切り抜ける
OpenCVでanimefaceを使うことで、自動処理できます。
コード
lbpcascade_animefaceをダウンロードします。
!wget https://raw.githubusercontent.com/nagadomi/lbpcascade_animeface/master/lbpcascade_animeface.xml
import cv2
def crop_anime_face(path,write_path):
face_detector = cv2.CascadeClassifier('lbpcascade_animeface.xml') # initialize detector
input_img_name = path
img = cv2.imread(input_img_name)
faces = face_detector.detectMultiScale(img) # detect
for x, y, w, h in faces:
left = x
top = y
right = x + w
bottom = y + h
face_img = bg[int(top):int(bottom), int(left):int(right)] # crop
cv2.imwrite(write_path,face_img)
🐣
フリーランスエンジニアです。
お仕事のご相談こちらまで
[email protected]
Core MLやARKitを使ったアプリを作っています。
機械学習/AR関連の情報を発信しています。
Author And Source
この問題について(アニメの顔を切り抜く), 我々は、より多くの情報をここで見つけました https://qiita.com/john-rocky/items/dc8eb572ac03dfb9d079著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .