1from pathlib import Path 2 3class 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