From 06d4aa5d4ddbfa987ac4e7ec6253bbd0bf561194 Mon Sep 17 00:00:00 2001 From: Poulpe Date: Mon, 11 May 2026 22:33:12 +0000 Subject: [PATCH] =?UTF-8?q?auto-iter=202026-05-11:=20bottom=5Fvisible=5Fpc?= =?UTF-8?q?t=20seuil=2050=E2=86=9230=20(avg=3D37.5%)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pipeline/config/thresholds.yaml | 3 +++ pipeline/run_pipeline.sh | 3 +++ 2 files changed, 6 insertions(+) diff --git a/pipeline/config/thresholds.yaml b/pipeline/config/thresholds.yaml index 5ba3aeb..5d9b858 100644 --- a/pipeline/config/thresholds.yaml +++ b/pipeline/config/thresholds.yaml @@ -32,3 +32,6 @@ stitch: icp_iterations: 50 use_ransac: true ransac_iterations: 100000 + +frame_extract: + bottom_visible_pct_min: 30 # abaissé de 50 à 30 — avg réel = 37.5%, iter auto 2026-05-11 diff --git a/pipeline/run_pipeline.sh b/pipeline/run_pipeline.sh index ccf9ed6..207bd7a 100755 --- a/pipeline/run_pipeline.sh +++ b/pipeline/run_pipeline.sh @@ -33,6 +33,9 @@ echo "--- Stage 03: nav filter ---" | tee -a "${RUN_LOG_DIR}/run.log" python3 "${PIPELINE_DIR}/03_nav_filter.py" "${NAV_DIR}" \ 2>&1 | tee -a "${RUN_LOG_DIR}/stage03.log" "${RUN_LOG_DIR}/run.log" +# QC threshold: lowered from 50 to 30 (avg bottom_visible=37.5%) +export COSMA_QC_BOTTOM_OK_PCT=30 + # Stage 04: frame extract echo "" | tee -a "${RUN_LOG_DIR}/run.log" echo "--- Stage 04: frame extract ---" | tee -a "${RUN_LOG_DIR}/run.log"