forked from deepfakes/faceswap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
faceswap.py
executable file
·48 lines (36 loc) · 1.51 KB
/
faceswap.py
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
#!/usr/bin/env python3
""" The master faceswap.py script """
import sys
from lib.cli import args
from lib.config import generate_configs
if sys.version_info[0] < 3:
raise Exception("This program requires at least python3.7")
if sys.version_info[0] == 3 and sys.version_info[1] < 7:
raise Exception("This program requires at least python3.7")
_PARSER = args.FullHelpArgumentParser()
def _bad_args(*args): # pylint:disable=unused-argument
""" Print help to console when bad arguments are provided. """
print(args)
_PARSER.print_help()
sys.exit(0)
def _main():
""" The main entry point into Faceswap.
- Generates the config files, if they don't pre-exist.
- Compiles the :class:`~lib.cli.args.FullHelpArgumentParser` objects for each section of
Faceswap.
- Sets the default values and launches the relevant script.
- Outputs help if invalid parameters are provided.
"""
generate_configs()
subparser = _PARSER.add_subparsers()
args.ExtractArgs(subparser, "extract", "Extract the faces from pictures")
args.TrainArgs(subparser, "train", "This command trains the model for the two faces A and B")
args.ConvertArgs(subparser,
"convert",
"Convert a source image to a new one with the face swapped")
args.GuiArgs(subparser, "gui", "Launch the Faceswap Graphical User Interface")
_PARSER.set_defaults(func=_bad_args)
arguments = _PARSER.parse_args()
arguments.func(arguments)
if __name__ == "__main__":
_main()