@@ -175,6 +175,13 @@ public class IntersceneMatchParameters {
publicdoublealt_outliers=0.1;// remove outliers when fitting planes
publicintalt_refine=1;// refine plane after removing outliers (0 - no outlier removal, 1 - remove outliers and refine once, ...)
publicdoublealt_weight_rot=1.0;// >0 weight of pairs errors in qn3
publicdoublealt_weight_tilt=0.3;// >0 weight of pairs errors in qn1, qn2
publicdoublealt_weight_scale=0.1;// >0 weight in pairs scale-1.0 errors
publicdoublealt_pull=0.2;// 0 <= pull <1 - fraction of all RMS contributors
publicdoublealt_pull_rots=1.0;// >=0 weight of sum of rotations, may be 0, normalized by pull value
publicdoublealt_pull_tilts=0.3;// >=0 weights of sum of qn1 and qn2 of scenes, normalized by pull value
publicdoublealt_pull_scales=0.1;// >=0 weights of scales of scenes, normalized by pull value
publicbooleanpmap_move_only=false;
publicbooleanpmap_ignore_affines=false;
...
...
@@ -930,6 +937,15 @@ min_str_neib_fpn 0.35
gd.addNumericField("Fraction of ouliers",this.alt_outliers,3,7,"","Remove outliers when fitting planes, removed fraction.");
gd.addNumericField("Number of alt plane refines",this.alt_refine,0,3,"","Refine altitude difference plane after removing outliers (0 - no outlier removal, 1 - remove outliers and refine once, ...)");
gd.addMessage("Parameters for scenes orientation LMA fitting");
gd.addNumericField("Rotation mismatches weights",this.alt_weight_rot,3,7,"","Weights of rotation mismatches.");
gd.addNumericField("Tilt mismatches weights",this.alt_weight_tilt,3,7,"","Weights of tilt mismatches.");
gd.addNumericField("Scale mismatches weights",this.alt_weight_scale,3,7,"","Weights of scale mismatches.");
gd.addNumericField("Pull strength",this.alt_pull,3,7,"","Relative weight of combined regularization pull (0<=pull<1.0)");
gd.addNumericField("Rotations pull",this.alt_pull_rots,3,7,"","Weight of sum of all rotations pull to zero - will be normalized to make sum of pulls a specified fraction of totla weights ");
gd.addNumericField("Tilts pull",this.alt_pull_tilts,3,7,"","Weight of sum of all tilts pull to zero - will be normalized to make sum of pulls a specified fraction of totla weights ");
gd.addNumericField("Scales pull",this.alt_pull_scales,3,7,"","Weight of sum of all scales pull to zero - will be normalized to make sum of pulls a specified fraction of totla weights ");
gd.addMessage("Build map with LMA from pairwise matches");
gd.addCheckbox("Moves only",this.pmap_move_only,"Moves only, no affine transform.");
gd.addCheckbox("Ignore existing affines",this.pmap_ignore_affines,"Start from unity matrices, ignore saved affines.");