rubedo/pa_result.py
2023-04-13 20:31:13 -06:00

11 lines
274 B
Python

import numpy as np
class PaResult:
def __init__(self, video_file: str, height_data: np.ndarray, score: float):
self.video_file = video_file
self.height_data = height_data
self.score = score
def __str__(self):
return f"{self.score}"