Spaces:
Running
on
Zero
Running
on
Zero
File size: 4,747 Bytes
45bd6c9 8c0addf 45bd6c9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 |
#!/usr/bin/env python
from __future__ import annotations
import argparse
import functools
import os
import pathlib
import sys
import tarfile
import cv2
import gradio as gr
import huggingface_hub
import numpy as np
import torch
sys.path.insert(0, 'face_detection')
sys.path.insert(0, 'face_alignment')
from ibug.face_alignment import FANPredictor
from ibug.face_detection import RetinaFacePredictor
REPO_URL = 'https://github.com/ibug-group/face_alignment'
TITLE = 'ibug-group/face_alignment'
DESCRIPTION = f'This is a demo for {REPO_URL}.'
ARTICLE = None
TOKEN = os.environ['TOKEN']
def parse_args() -> argparse.Namespace:
parser = argparse.ArgumentParser()
parser.add_argument('--device', type=str, default='cpu')
parser.add_argument('--theme', type=str)
parser.add_argument('--live', action='store_true')
parser.add_argument('--share', action='store_true')
parser.add_argument('--port', type=int)
parser.add_argument('--disable-queue',
dest='enable_queue',
action='store_false')
parser.add_argument('--allow-flagging', type=str, default='never')
return parser.parse_args()
def load_sample_images() -> list[pathlib.Path]:
image_dir = pathlib.Path('images')
if not image_dir.exists():
image_dir.mkdir()
dataset_repo = 'hysts/input-images'
filenames = ['001.tar']
for name in filenames:
path = huggingface_hub.hf_hub_download(dataset_repo,
name,
repo_type='dataset',
use_auth_token=TOKEN)
with tarfile.open(path) as f:
f.extractall(image_dir.as_posix())
return sorted(image_dir.rglob('*.jpg'))
def load_detector(device: torch.device) -> RetinaFacePredictor:
model = RetinaFacePredictor(
threshold=0.8,
device=device,
model=RetinaFacePredictor.get_model('mobilenet0.25'))
return model
def load_model(model_name: str, device: torch.device) -> FANPredictor:
model = FANPredictor(device=device,
model=FANPredictor.get_model(model_name))
return model
def predict(image: np.ndarray, model_name: str, max_num_faces: int,
landmark_score_threshold: int, detector: RetinaFacePredictor,
models: dict[str, FANPredictor]) -> np.ndarray:
model = models[model_name]
# RGB -> BGR
image = image[:, :, ::-1]
faces = detector(image, rgb=False)
if len(faces) == 0:
raise RuntimeError('No face was found.')
faces = sorted(list(faces), key=lambda x: -x[4])[:max_num_faces]
faces = np.asarray(faces)
landmarks, landmark_scores = model(image, faces, rgb=False)
res = image.copy()
for face, pts, scores in zip(faces, landmarks, landmark_scores):
box = np.round(face[:4]).astype(int)
cv2.rectangle(res, tuple(box[:2]), tuple(box[2:]), (0, 255, 0), 2)
for pt, score in zip(np.round(pts).astype(int), scores):
if score < landmark_score_threshold:
continue
cv2.circle(res, tuple(pt), 2, (0, 255, 0), cv2.FILLED)
return res[:, :, ::-1]
def main():
gr.close_all()
args = parse_args()
device = torch.device(args.device)
detector = load_detector(device)
model_names = [
'2dfan2',
'2dfan4',
'2dfan2_alt',
]
models = {name: load_model(name, device=device) for name in model_names}
func = functools.partial(predict, detector=detector, models=models)
func = functools.update_wrapper(func, predict)
image_paths = load_sample_images()
examples = [[path.as_posix(), model_names[0], 10, 0.2]
for path in image_paths]
gr.Interface(
func,
[
gr.inputs.Image(type='numpy', label='Input'),
gr.inputs.Radio(model_names,
type='value',
default=model_names[0],
label='Model'),
gr.inputs.Slider(
1, 20, step=1, default=10, label='Max Number of Faces'),
gr.inputs.Slider(
0, 1, step=0.05, default=0.2,
label='Landmark Score Threshold'),
],
gr.outputs.Image(type='numpy', label='Output'),
examples=examples,
title=TITLE,
description=DESCRIPTION,
article=ARTICLE,
theme=args.theme,
allow_flagging=args.allow_flagging,
live=args.live,
).launch(
enable_queue=args.enable_queue,
server_port=args.port,
share=args.share,
)
if __name__ == '__main__':
main()
|