DeepFaceLab/merger/FrameInfo.py

8 lines
252 B
Python
Raw Normal View History

from pathlib import Path
class FrameInfo(object):
2020-01-23 02:14:31 +08:00
def __init__(self, filepath=None, landmarks_list=None):
self.filepath = filepath
self.landmarks_list = landmarks_list or []
self.motion_deg = 0
self.motion_power = 0