mirror of
https://github.com/facefusion/facefusion.git
synced 2026-08-04 16:18:38 +02:00
* mark as next * add fran model * add support for corridor key (#1060) * introduce despill color * simplify the apply dispill color * finalize naming for both fill and despill * follow vision_frame convension * patch fran model * adjust fran urls * Feat/dynamic env setup (#1061) * dynamic environment setup * dynamic environment setup * fix fran model * prevent directml using incompatible corridor_key model * fix environment setup for windows * switch to corridor_key_1024 and corridor_key_2048 * switch to corridor_key_1024 and corridor_key_2048 * mark it as 3.6.0 * rename environment to conda * rename environment to conda * fix testing for face analyser * some background remove cosmetics * some background remove cosmetics * some background remove cosmetics * update preview --------- Co-authored-by: harisreedhar <h4harisreedhar.s.s@gmail.com>
27 lines
805 B
Python
27 lines
805 B
Python
from facefusion.types import Locales
|
|
|
|
LOCALES : Locales =\
|
|
{
|
|
'en':
|
|
{
|
|
'help':
|
|
{
|
|
'model': 'choose the model responsible for removing the background',
|
|
'fill_color': 'apply red, green, blue and alpha values to the background',
|
|
'despill_color': 'remove red, green, blue and alpha values from the foreground'
|
|
},
|
|
'uis':
|
|
{
|
|
'model_dropdown': 'BACKGROUND REMOVER MODEL',
|
|
'fill_color_red_number': 'FILL COLOR RED',
|
|
'fill_color_green_number': 'FILL COLOR GREEN',
|
|
'fill_color_blue_number': 'FILL COLOR BLUE',
|
|
'fill_color_alpha_number': 'FILL COLOR ALPHA',
|
|
'despill_color_red_number': 'DESPILL COLOR RED',
|
|
'despill_color_green_number': 'DESPILL COLOR GREEN',
|
|
'despill_color_blue_number': 'DESPILL COLOR BLUE',
|
|
'despill_color_alpha_number': 'DESPILL COLOR ALPHA'
|
|
}
|
|
}
|
|
}
|