Files
AVM360/surround_view/structures.py
2026-04-01 14:11:47 +08:00

13 lines
263 B
Python

class ImageFrame(object):
def __init__(self, timestamp, image):
self.timestamp = timestamp
self.image = image
class ThreadStatisticsData(object):
def __init__(self):
self.average_fps = 0
self.frames_processed_count = 0