feat/ sync weight fitting logic and confidence level marker *

This commit is contained in:
zaiun xu
2026-04-14 12:17:10 +08:00
parent c1aafc69bf
commit 8497d0eb1d
7 changed files with 1283 additions and 614 deletions

View File

@@ -63,6 +63,8 @@ def _predict_weigth_from_svo2_extra_args(settings: Settings) -> List[str]:
str(settings.predict_minute_interval_sec),
]
)
if settings.predict_show_large_labels_at_top_right:
out.append("--show-large-labels-at-top-right")
if not settings.measure_reuse_existing_clouds:
out.append("--no-reuse-existing-clouds")
return out

View File

@@ -95,6 +95,8 @@ class Settings(BaseSettings):
#: 为 True 时 fish_video 内联 DGCNN + 预览叠加(更重;需 fish_video 已支持)
predict_fish_video_weight_overlay: bool = False
predict_minute_interval_sec: float = 60.0
#: 为 True 时在视频右上角显示大型 weight/length 标签10倍字体便于查看真实/相机生成视频的标签数据
predict_show_large_labels_at_top_right: bool = False
action_checkpoint: Optional[str] = None
action_clips_per_video: int = 8