Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

FrameInfo.py 252 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
  1. from pathlib import Path
  2. class FrameInfo(object):
  3. def __init__(self, filepath=None, landmarks_list=None):
  4. self.filepath = filepath
  5. self.landmarks_list = landmarks_list or []
  6. self.motion_deg = 0
  7. self.motion_power = 0
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...