mirror of
https://github.com/iperov/DeepFaceLab.git
synced 2025-07-06 13:02:15 -07:00
upd convertor overview
This commit is contained in:
parent
ffddfeabdb
commit
5835a8832a
3 changed files with 2 additions and 2 deletions
Binary file not shown.
Before Width: | Height: | Size: 1.4 MiB After Width: | Height: | Size: 1.5 MiB |
Binary file not shown.
4
main.py
4
main.py
|
@ -149,7 +149,7 @@ if __name__ == "__main__":
|
||||||
|
|
||||||
if arguments.mode == 'seamless' or arguments.mode == 'seamless-hist-match':
|
if arguments.mode == 'seamless' or arguments.mode == 'seamless-hist-match':
|
||||||
try:
|
try:
|
||||||
arguments.seamless_erode_mask_modifier = int ( input ("Choose seamless erode mask modifier [-20..20] (default 0) : ") )
|
arguments.seamless_erode_mask_modifier = int ( input ("Choose seamless erode mask modifier [-100..100] (default 0) : ") )
|
||||||
except:
|
except:
|
||||||
arguments.seamless_erode_mask_modifier = 0
|
arguments.seamless_erode_mask_modifier = 0
|
||||||
|
|
||||||
|
@ -175,7 +175,7 @@ if __name__ == "__main__":
|
||||||
|
|
||||||
arguments.erode_mask_modifier = np.clip ( int(arguments.erode_mask_modifier), -200, 200)
|
arguments.erode_mask_modifier = np.clip ( int(arguments.erode_mask_modifier), -200, 200)
|
||||||
arguments.blur_mask_modifier = np.clip ( int(arguments.blur_mask_modifier), -200, 200)
|
arguments.blur_mask_modifier = np.clip ( int(arguments.blur_mask_modifier), -200, 200)
|
||||||
arguments.seamless_erode_mask_modifier = np.clip ( int(arguments.seamless_erode_mask_modifier), -20, 20)
|
arguments.seamless_erode_mask_modifier = np.clip ( int(arguments.seamless_erode_mask_modifier), -100, 100)
|
||||||
arguments.output_face_scale_modifier = np.clip ( int(arguments.output_face_scale_modifier), -50, 50)
|
arguments.output_face_scale_modifier = np.clip ( int(arguments.output_face_scale_modifier), -50, 50)
|
||||||
|
|
||||||
from mainscripts import Converter
|
from mainscripts import Converter
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue