mirror of
https://gitlab.com/mirrors_git/DeepFaceLab.git
synced 2025-12-07 00:21:13 +01: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 |