mirror of
https://github.com/iperov/DeepFaceLab.git
synced 2025-03-12 20:42:45 -07:00
9 lines
307 B
Python
9 lines
307 B
Python
from pathlib import Path
|
|
|
|
class FrameInfo(object):
|
|
def __init__(self, filename=None, landmarks_list=None):
|
|
self.filename = filename
|
|
self.filename_short = str(Path(filename).name)
|
|
self.landmarks_list = landmarks_list or []
|
|
self.motion_deg = 0
|
|
self.motion_power = 0 |