From be55261ebf9e92fa41df82b79802a5d83217c7ac Mon Sep 17 00:00:00 2001 From: Laurent Guerard Date: Mon, 19 Jan 2026 10:22:51 +0100 Subject: [PATCH] fix(bdv): correct lambda spelling and improve formatting * Fixed typo in 'lambda' parameter in interest_points_registration function. * Removed unnecessary blank line for cleaner code. * Added 'search_radius' and 'inlier_factor' parameters for better configuration. --- src/imcflibs/imagej/bdv.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/imcflibs/imagej/bdv.py b/src/imcflibs/imagej/bdv.py index 5cc7b412..616bdc3a 100644 --- a/src/imcflibs/imagej/bdv.py +++ b/src/imcflibs/imagej/bdv.py @@ -21,7 +21,6 @@ from .. import pathtools from ..log import LOG as log - # internal template strings used in string formatting (note: the `"""@private"""` # pseudo-decorator is there to instruct [pdoc] to omit those variables when generating # API documentation): @@ -1351,11 +1350,13 @@ def interest_points_registration( + "transformation=Affine " + "regularize_model " + "model_to_regularize_with=Affine " - + "lamba=0.10 " + + "lambda=0.10 " + "number_of_neighbors=3 " + "redundancy=1 " + "significance=3 " + + "search_radius=100 " + "allowed_error_for_ransac=5 " + + "inlier_factor=3 " + "ransac_iterations=Normal " + "global_optimization_strategy=[" + "Two-Round: Handle unconnected tiles, "