2023-08-19 22:42:25 +02:00
|
|
|
from typing import List, Optional, Tuple, Any, Dict
|
|
|
|
|
|
|
|
|
|
import gradio
|
|
|
|
|
|
|
|
|
|
import facefusion.globals
|
2023-11-28 17:29:24 +01:00
|
|
|
import facefusion.choices
|
2023-08-19 22:42:25 +02:00
|
|
|
from facefusion import wording
|
2023-11-28 17:29:24 +01:00
|
|
|
from facefusion.face_cache import clear_faces_cache
|
|
|
|
|
from facefusion.vision import get_video_frame, read_static_image, normalize_frame_color
|
2023-08-19 22:42:25 +02:00
|
|
|
from facefusion.face_analyser import get_many_faces
|
|
|
|
|
from facefusion.face_reference import clear_face_reference
|
2023-11-28 17:29:24 +01:00
|
|
|
from facefusion.typing import Frame, FaceSelectorMode
|
2023-08-19 22:42:25 +02:00
|
|
|
from facefusion.utilities import is_image, is_video
|
2023-10-09 10:16:13 +02:00
|
|
|
from facefusion.uis.core import get_ui_component, register_ui_component
|
|
|
|
|
from facefusion.uis.typing import ComponentName
|
2023-08-19 22:42:25 +02:00
|
|
|
|
2023-11-28 17:29:24 +01:00
|
|
|
FACE_SELECTOR_MODE_DROPDOWN : Optional[gradio.Dropdown] = None
|
2023-08-19 22:42:25 +02:00
|
|
|
REFERENCE_FACE_POSITION_GALLERY : Optional[gradio.Gallery] = None
|
|
|
|
|
REFERENCE_FACE_DISTANCE_SLIDER : Optional[gradio.Slider] = None
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def render() -> None:
|
2023-11-28 17:29:24 +01:00
|
|
|
global FACE_SELECTOR_MODE_DROPDOWN
|
2023-08-19 22:42:25 +02:00
|
|
|
global REFERENCE_FACE_POSITION_GALLERY
|
|
|
|
|
global REFERENCE_FACE_DISTANCE_SLIDER
|
|
|
|
|
|
2023-09-19 11:21:18 +02:00
|
|
|
reference_face_gallery_args: Dict[str, Any] =\
|
|
|
|
|
{
|
|
|
|
|
'label': wording.get('reference_face_gallery_label'),
|
|
|
|
|
'object_fit': 'cover',
|
2023-11-28 17:29:24 +01:00
|
|
|
'columns': 8,
|
2023-09-19 11:21:18 +02:00
|
|
|
'allow_preview': False,
|
2023-11-28 17:29:24 +01:00
|
|
|
'visible': 'reference' in facefusion.globals.face_selector_mode
|
2023-09-19 11:21:18 +02:00
|
|
|
}
|
|
|
|
|
if is_image(facefusion.globals.target_path):
|
|
|
|
|
reference_frame = read_static_image(facefusion.globals.target_path)
|
|
|
|
|
reference_face_gallery_args['value'] = extract_gallery_frames(reference_frame)
|
|
|
|
|
if is_video(facefusion.globals.target_path):
|
|
|
|
|
reference_frame = get_video_frame(facefusion.globals.target_path, facefusion.globals.reference_frame_number)
|
|
|
|
|
reference_face_gallery_args['value'] = extract_gallery_frames(reference_frame)
|
2023-11-28 17:29:24 +01:00
|
|
|
FACE_SELECTOR_MODE_DROPDOWN = gradio.Dropdown(
|
|
|
|
|
label = wording.get('face_selector_mode_dropdown_label'),
|
|
|
|
|
choices = facefusion.choices.face_selector_modes,
|
|
|
|
|
value = facefusion.globals.face_selector_mode
|
2023-09-19 11:21:18 +02:00
|
|
|
)
|
|
|
|
|
REFERENCE_FACE_POSITION_GALLERY = gradio.Gallery(**reference_face_gallery_args)
|
|
|
|
|
REFERENCE_FACE_DISTANCE_SLIDER = gradio.Slider(
|
|
|
|
|
label = wording.get('reference_face_distance_slider_label'),
|
|
|
|
|
value = facefusion.globals.reference_face_distance,
|
2023-11-28 17:29:24 +01:00
|
|
|
step = facefusion.choices.reference_face_distance_range[1] - facefusion.choices.reference_face_distance_range[0],
|
|
|
|
|
minimum = facefusion.choices.reference_face_distance_range[0],
|
|
|
|
|
maximum = facefusion.choices.reference_face_distance_range[-1],
|
|
|
|
|
visible = 'reference' in facefusion.globals.face_selector_mode
|
2023-09-19 11:21:18 +02:00
|
|
|
)
|
2023-11-28 17:29:24 +01:00
|
|
|
register_ui_component('face_selector_mode_dropdown', FACE_SELECTOR_MODE_DROPDOWN)
|
2023-10-09 10:16:13 +02:00
|
|
|
register_ui_component('reference_face_position_gallery', REFERENCE_FACE_POSITION_GALLERY)
|
|
|
|
|
register_ui_component('reference_face_distance_slider', REFERENCE_FACE_DISTANCE_SLIDER)
|
2023-08-19 22:42:25 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def listen() -> None:
|
2023-11-28 17:29:24 +01:00
|
|
|
FACE_SELECTOR_MODE_DROPDOWN.select(update_face_selector_mode, inputs = FACE_SELECTOR_MODE_DROPDOWN, outputs = [ REFERENCE_FACE_POSITION_GALLERY, REFERENCE_FACE_DISTANCE_SLIDER ])
|
|
|
|
|
REFERENCE_FACE_POSITION_GALLERY.select(clear_and_update_reference_face_position)
|
2023-08-19 22:42:25 +02:00
|
|
|
REFERENCE_FACE_DISTANCE_SLIDER.change(update_reference_face_distance, inputs = REFERENCE_FACE_DISTANCE_SLIDER)
|
2023-09-06 00:25:18 +02:00
|
|
|
multi_component_names : List[ComponentName] =\
|
2023-08-19 22:42:25 +02:00
|
|
|
[
|
2023-09-06 00:25:18 +02:00
|
|
|
'target_image',
|
|
|
|
|
'target_video'
|
2023-08-19 22:42:25 +02:00
|
|
|
]
|
2023-09-06 00:25:18 +02:00
|
|
|
for component_name in multi_component_names:
|
2023-10-09 10:16:13 +02:00
|
|
|
component = get_ui_component(component_name)
|
2023-08-19 22:42:25 +02:00
|
|
|
if component:
|
2023-09-06 00:25:18 +02:00
|
|
|
for method in [ 'upload', 'change', 'clear' ]:
|
2023-11-28 17:29:24 +01:00
|
|
|
getattr(component, method)(update_reference_face_position)
|
|
|
|
|
getattr(component, method)(update_reference_position_gallery, outputs = REFERENCE_FACE_POSITION_GALLERY)
|
|
|
|
|
change_one_component_names : List[ComponentName] =\
|
2023-08-19 22:42:25 +02:00
|
|
|
[
|
2023-11-28 17:29:24 +01:00
|
|
|
'face_analyser_order_dropdown',
|
2023-08-19 22:42:25 +02:00
|
|
|
'face_analyser_age_dropdown',
|
|
|
|
|
'face_analyser_gender_dropdown'
|
|
|
|
|
]
|
2023-11-28 17:29:24 +01:00
|
|
|
for component_name in change_one_component_names:
|
|
|
|
|
component = get_ui_component(component_name)
|
|
|
|
|
if component:
|
|
|
|
|
component.change(update_reference_position_gallery, outputs = REFERENCE_FACE_POSITION_GALLERY)
|
|
|
|
|
change_two_component_names : List[ComponentName] =\
|
|
|
|
|
[
|
|
|
|
|
'face_detector_model_dropdown',
|
|
|
|
|
'face_detector_size_dropdown',
|
|
|
|
|
'face_detector_score_slider'
|
|
|
|
|
]
|
|
|
|
|
for component_name in change_two_component_names:
|
2023-10-09 10:16:13 +02:00
|
|
|
component = get_ui_component(component_name)
|
2023-08-19 22:42:25 +02:00
|
|
|
if component:
|
2023-11-28 17:29:24 +01:00
|
|
|
component.change(clear_and_update_reference_position_gallery, outputs = REFERENCE_FACE_POSITION_GALLERY)
|
2023-10-09 10:16:13 +02:00
|
|
|
preview_frame_slider = get_ui_component('preview_frame_slider')
|
2023-09-06 00:25:18 +02:00
|
|
|
if preview_frame_slider:
|
2023-11-28 17:29:24 +01:00
|
|
|
preview_frame_slider.change(update_reference_frame_number, inputs = preview_frame_slider)
|
|
|
|
|
preview_frame_slider.release(update_reference_position_gallery, outputs = REFERENCE_FACE_POSITION_GALLERY)
|
2023-08-19 22:42:25 +02:00
|
|
|
|
|
|
|
|
|
2023-11-28 17:29:24 +01:00
|
|
|
def update_face_selector_mode(face_selector_mode : FaceSelectorMode) -> Tuple[gradio.Gallery, gradio.Slider]:
|
|
|
|
|
if face_selector_mode == 'reference':
|
|
|
|
|
facefusion.globals.face_selector_mode = face_selector_mode
|
2023-10-09 10:16:13 +02:00
|
|
|
return gradio.Gallery(visible = True), gradio.Slider(visible = True)
|
2023-11-28 17:29:24 +01:00
|
|
|
if face_selector_mode == 'one':
|
|
|
|
|
facefusion.globals.face_selector_mode = face_selector_mode
|
|
|
|
|
return gradio.Gallery(visible = False), gradio.Slider(visible = False)
|
|
|
|
|
if face_selector_mode == 'many':
|
|
|
|
|
facefusion.globals.face_selector_mode = face_selector_mode
|
2023-10-09 10:16:13 +02:00
|
|
|
return gradio.Gallery(visible = False), gradio.Slider(visible = False)
|
2023-08-19 22:42:25 +02:00
|
|
|
|
|
|
|
|
|
2023-11-28 17:29:24 +01:00
|
|
|
def clear_and_update_reference_face_position(event : gradio.SelectData) -> gradio.Gallery:
|
2023-08-19 22:42:25 +02:00
|
|
|
clear_face_reference()
|
2023-11-28 17:29:24 +01:00
|
|
|
clear_faces_cache()
|
|
|
|
|
update_reference_face_position(event.index)
|
|
|
|
|
return update_reference_position_gallery()
|
2023-08-19 22:42:25 +02:00
|
|
|
|
|
|
|
|
|
2023-11-28 17:29:24 +01:00
|
|
|
def update_reference_face_position(reference_face_position : int = 0) -> None:
|
2023-08-19 22:42:25 +02:00
|
|
|
facefusion.globals.reference_face_position = reference_face_position
|
2023-11-28 17:29:24 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def update_reference_face_distance(reference_face_distance : float) -> None:
|
|
|
|
|
facefusion.globals.reference_face_distance = reference_face_distance
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def update_reference_frame_number(reference_frame_number : int) -> None:
|
|
|
|
|
facefusion.globals.reference_frame_number = reference_frame_number
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def clear_and_update_reference_position_gallery() -> gradio.Gallery:
|
|
|
|
|
clear_face_reference()
|
|
|
|
|
clear_faces_cache()
|
|
|
|
|
return update_reference_position_gallery()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def update_reference_position_gallery() -> gradio.Gallery:
|
|
|
|
|
gallery_frames = []
|
2023-08-19 22:42:25 +02:00
|
|
|
if is_image(facefusion.globals.target_path):
|
2023-09-19 11:21:18 +02:00
|
|
|
reference_frame = read_static_image(facefusion.globals.target_path)
|
2023-08-19 22:42:25 +02:00
|
|
|
gallery_frames = extract_gallery_frames(reference_frame)
|
|
|
|
|
if is_video(facefusion.globals.target_path):
|
|
|
|
|
reference_frame = get_video_frame(facefusion.globals.target_path, facefusion.globals.reference_frame_number)
|
|
|
|
|
gallery_frames = extract_gallery_frames(reference_frame)
|
|
|
|
|
if gallery_frames:
|
2023-10-09 10:16:13 +02:00
|
|
|
return gradio.Gallery(value = gallery_frames)
|
|
|
|
|
return gradio.Gallery(value = None)
|
2023-08-19 22:42:25 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def extract_gallery_frames(reference_frame : Frame) -> List[Frame]:
|
|
|
|
|
crop_frames = []
|
|
|
|
|
faces = get_many_faces(reference_frame)
|
|
|
|
|
for face in faces:
|
2023-11-28 17:29:24 +01:00
|
|
|
start_x, start_y, end_x, end_y = map(int, face.bbox)
|
2023-08-19 22:42:25 +02:00
|
|
|
padding_x = int((end_x - start_x) * 0.25)
|
|
|
|
|
padding_y = int((end_y - start_y) * 0.25)
|
|
|
|
|
start_x = max(0, start_x - padding_x)
|
|
|
|
|
start_y = max(0, start_y - padding_y)
|
|
|
|
|
end_x = max(0, end_x + padding_x)
|
|
|
|
|
end_y = max(0, end_y + padding_y)
|
|
|
|
|
crop_frame = reference_frame[start_y:end_y, start_x:end_x]
|
2023-09-06 00:25:18 +02:00
|
|
|
crop_frame = normalize_frame_color(crop_frame)
|
|
|
|
|
crop_frames.append(crop_frame)
|
2023-08-19 22:42:25 +02:00
|
|
|
return crop_frames
|