Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
iperov
GitHub Repository: iperov/deepfacelab
Path: blob/master/merger/FrameInfo.py
628 views
1
from pathlib import Path
2
3
class FrameInfo(object):
4
def __init__(self, filepath=None, landmarks_list=None):
5
self.filepath = filepath
6
self.landmarks_list = landmarks_list or []
7
self.motion_deg = 0
8
self.motion_power = 0
9