mirror of
https://github.com/furrysalamander/rubedo.git
synced 2025-11-04 15:49:40 +08:00
Cleaned up a lot of code. Some things are still kind of messy, but it's a vast improvement over what I used to have. Data is easy to pass around the system, and the pattern info has proved invaluable for cleanly connecting prints, scans, and analysis.
8 lines
219 B
Python
8 lines
219 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
|