标定运行

This commit is contained in:
2025-12-12 09:49:13 +08:00
parent 9257824716
commit c51757f66b
103 changed files with 2485 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
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