mirror of
https://github.com/furrysalamander/rubedo.git
synced 2025-09-26 23:29:12 +08:00
11 lines
274 B
Python
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}"
|