mirror of
https://github.com/iperov/DeepFaceLab.git
synced 2025-07-07 21:42:08 -07:00
minor fix
This commit is contained in:
parent
63d30c49ae
commit
25da22fdc9
1 changed files with 5 additions and 4 deletions
|
@ -1,12 +1,13 @@
|
|||
from enum import IntEnum
|
||||
|
||||
class FaceType(IntEnum):
|
||||
#enumerating in order "next contains prev"
|
||||
HALF = 0,
|
||||
FULL = 1,
|
||||
HEAD = 2,
|
||||
|
||||
FULL_NO_ALIGN = 5,
|
||||
HEAD_NO_ALIGN = 6,
|
||||
FULL_NO_ALIGN = 3,
|
||||
HEAD = 4,
|
||||
HEAD_NO_ALIGN = 5,
|
||||
|
||||
MARK_ONLY = 10, #no align at all, just embedded faceinfo
|
||||
|
||||
@staticmethod
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue