initial structure implemented

docs -> _docs
This commit is contained in:
Oleksandr Bezdieniezhnykh
2025-12-01 14:20:56 +02:00
parent 9134c5db06
commit abc26d5c20
360 changed files with 3881 additions and 101 deletions
+14
View File
@@ -0,0 +1,14 @@
from pydantic import BaseModel
class RecoveryConfig(BaseModel):
search_grid_sizes: list[int] = [1, 4, 9, 16, 25]
min_chunk_frames_for_matching: int = 5
max_chunk_frames_for_matching: int = 20
user_input_threshold_tiles: int = 25
chunk_matching_interval_seconds: float = 5.0
confidence_threshold_good: float = 0.7
confidence_threshold_degraded: float = 0.5
min_inlier_count_good: int = 50
min_inlier_count_tracking: int = 20