Skip to content

Commit

Permalink
fixed a really evil bug - using the wrong parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
StephanPreibisch committed Oct 11, 2024
1 parent d4d4c18 commit 036a1ca
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ public static void refine(
params.maxError * 2,
100,
true,
RANSACParameters.min_inlier_factor,
RANSACParameters.min_inlier_ratio,
params.maxError,
200,
IterativeClosestPointParameters.defaultMinNumPoints );
Expand Down Expand Up @@ -495,7 +495,7 @@ public static void refine(
if ( models == null )
continue;

IOFunctions.println( "(" + new Date( System.currentTimeMillis() ) + "): Fina transformation models (without mapback model):" );
IOFunctions.println( "(" + new Date( System.currentTimeMillis() ) + "): Final transformation models (without mapback model):" );

// pre-concatenate models to spimdata2 viewregistrations (from SpimData(2))
for ( final ViewId viewId : subset.getViews() )
Expand Down

0 comments on commit 036a1ca

Please sign in to comment.