@@ -368,25 +368,26 @@ python Rhapso/pipelines/ray/aws/alignment_pipeline.py
368368| Parameter | Feature / step | What it does | Typical range |
369369| :---------------------------- | :------------------- | :---------------------------------------------------------------- | :------------- |
370370| `model_min_matches` | RANSAC | Minimum correspondences to estimate a rigid transform | 18 – 32 |
371- | `inlier_factor ` | RANSAC | Inlier tolerance scaling; larger = looser inlier threshold | 30 – 100 |
372- | `lambda_value` | RANSAC | Regularization strength during model fitting | 0.1 – 0.05 |
371+ | `inlier_threshold ` | RANSAC | Inlier tolerance scaling; larger = looser inlier threshold | 50 – 100 |
372+ | `min_inlier_ratio` | RANSAC | Regularization strength during model fitting | 0.1 – 0.05 |
373373| `num_iterations` | RANSAC | Number of RANSAC trials; higher = more robust, slower | 10,0000 |
374- | `regularization_weight` | RANSAC | Weight applied to the regularization term | 1.0 |
374+ | `regularization_weight` | RANSAC | Weight applied to the regularization term | 0.05 - 1.0 |
375375
376376```
377377<br >
378378
379379### Solver
380380```
381- | Parameter | Feature / step | What it does | Typical range |
382- | :------------------- | :------------- | :----------------------------------------------------------------- | :------------------ |
383- | `relative_threshold` | Graph pruning | Reject edges with residuals above dataset-relative cutoff | 3.5 |
384- | `absolute_threshold` | Graph pruning | Reject edges above an absolute error bound (detection-space units) | 7.0 |
385- | `min_matches` | Graph pruning | Minimum matches required to retain an edge between tiles | 3 |
386- | `damp` | Optimization | Damping for iterative solver; higher can stabilize tough cases | 1.0 |
387- | `max_iterations` | Optimization | Upper bound on solver iterations | 10,0000 |
388- | `max_allowed_error` | Optimization | Overall error cap; `inf` disables hard stop by error | `inf` |
389- | `max_plateauwidth` | Early stopping | Stagnation window before stopping on no improvement | 200 |
381+ | Parameter | Feature / step | What it does | Typical range |
382+ | :----------------------- | :------------- | :----------------------------------------------------------------- | :------------------ |
383+ | `relative_threshold` | Graph pruning | Reject edges with residuals above dataset-relative cutoff | 3.5 |
384+ | `absolute_threshold` | Graph pruning | Reject edges above an absolute error bound (detection-space units) | 7.0 |
385+ | `min_matches` | Graph pruning | Minimum matches required to retain an edge between tiles | 3 |
386+ | `damp` | Optimization | Damping for iterative solver; higher can stabilize tough cases | 1.0 |
387+ | `max_iterations` | Optimization | Upper bound on solver iterations | 10,0000 |
388+ | `max_allowed_error` | Optimization | Overall error cap; `inf` disables hard stop by error | `inf` |
389+ | `max_plateauwidth` | Early stopping | Stagnation window before stopping on no improvement | 200 |
390+ | `regularization_weight` | RANSAC | Weight applied to the regularization term | 0.05 - 1.0 |
390391
391392```
392393
0 commit comments