KeyframesAI / pose-frames.py
acmyu's picture
initial commit
3366cca verified
raw
history blame contribute delete
528 Bytes
#from annotator.dwpose import DWposeDetector
from easy_dwpose import DWposeDetector
from PIL import Image
device = "cpu"
dwpose = DWposeDetector(device=device)
for n in range(1, 46):
pil_image = Image.open("videos/dance2/frame ("+str(n)+").png").convert("RGB")
#skeleton = dwpose(pil_image, output_type="np", include_hands=True, include_face=False)
out_img, pose = dwpose(pil_image, include_hands=True, include_face=True)
print(pose['bodies'])
out_img.save('videos/dance'+str(n)+'.png')