@@ -342,7 +342,8 @@ python Rhapso/pipelines/ray/aws/alignment_pipeline.py
342342| `significance` | Ratio test | Strictness of descriptor ratio test; larger = stricter acceptance | 3 |
343343| `search_radius` | Spatial gating | Max spatial distance for candidate matches (in downsampled units) | 100 - 300 |
344344| `num_required_neighbors` | Candidate filtering | Minimum neighbors required to keep a candidate point | 3 |
345- | `model_min_matches` | RANSAC | Minimum correspondences to estimate a rigid transform | 18 – 32 |
345+ | `ransac_sample_size` | RANSAC | Minimum sample size | 3 - 5 |
346+ | `model_min_inliers` | RANSAC | Minimum correspondences to estimate a transform | 18 – 32 |
346347| `inlier_factor` | RANSAC | Inlier tolerance scaling; larger = looser inlier threshold | 30 – 100 |
347348| `lambda_value` | RANSAC | Regularization strength during model fitting | 0.1 – 0.05 |
348349| `num_iterations` | RANSAC | Number of RANSAC trials; higher = more robust, slower | 10,0000 |
@@ -383,12 +384,13 @@ python Rhapso/pipelines/ray/aws/alignment_pipeline.py
383384
384385### Fusion
385386```
386- | Parameter | Feature / step | What it does | Typical range |
387- | :------------------- | :------------- | :----------------------------------------------------------------- | :------------------ |
388- | `block_size` | Fusion opt | Cell size per task xyz | 256, 256, 256 |
389- | `intensity_range` | Fusion config | Range of intensity values | 0, 65535 |
390- | `block_scale` | Fusion opt | Scaling of cell size | 2, 2, 1 |
391- | `overlap_strategy` | Edge handling | Strategy when more than 1 view contributes also lowest_view_wins | avg_blend |
387+ | Parameter | Feature / step | What it does | Typical range |
388+ | :------------------- | :------------- | :--------------------------------------------------------| :---------------------------- |
389+ | `block_size` | Fusion opt | Cell size per task xyz | 256, 256, 256 |
390+ | `intensity_range` | Fusion config | Range of intensity values | 0, 65535 |
391+ | `block_scale` | Fusion opt | Scaling of cell size | 2, 2, 1 |
392+ | `overlap_strategy` | Edge handling | Strategy for competing pixels | avg_blend or lowest_view_wins |
393+ | `output_zarr_version`| Zarr version | Set which zarr version you want for output | 2 or 3 |
392394
393395```
394396<br >
0 commit comments