mirror of
https://github.com/iperov/DeepFaceLab.git
synced 2024-03-22 13:10:55 +08:00
8 lines
252 B
Python
8 lines
252 B
Python
from pathlib import Path
|
|
|
|
class FrameInfo(object):
|
|
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 |