You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Option(names = { "-rmir", "--ransacMinInlierRatio" }, description = "ransac min inlier ratio (default: 0.1)")
140
140
protectedDoubleransacMinInlierRatio = 0.1;
141
141
142
-
@Option(names = { "-rmif", "--ransacMinInlierFactor" }, description = "ransac min inlier factor, i.e. how many time the minimal number of matches need to found, e.g. affine needs 4 matches, 3x means at least 12 matches required (default: 3.0)")
143
-
protectedDoubleransacMinInlierFactor = 3.0;
142
+
@Option(names = { "-rmni", "--ransacMinNumInliers" }, description = "ransac minimal number of required inliers (default: 12)")
@Option(names = { "--numCoefficients" }, description = "number of coefficients per dimension (default: 8,8,8)")
38
43
privateStringnumCoefficientsString = "8,8,8";
39
44
@@ -52,19 +57,23 @@ public class SparkIntensityMatching extends AbstractSelectableViews
52
57
@Option(names = { "--minNumCandidates" }, description = "minimum number of (non-discarded) overlapping pixels required to match overlapping coefficient regions (default: 1000)")
@CommandLine.Option(names = { "--maxEpsilon" }, description = "maximal allowed transfer error (default: 5.1, only for RANSAC method)")
59
68
privatedoublemaxEpsilon = 0.02 * 255;
60
69
61
-
@CommandLine.Option(names = { "--minInlierRatio" }, description = "minimal ratio of of inliers to number of candidates (default: 0.1)")
70
+
@CommandLine.Option(names = { "--minInlierRatio" }, description = "minimal ratio of of inliers to number of candidates (default: 0.1, only for RANSAC method)")
62
71
privatedoubleminInlierRatio = 0.1;
63
72
64
-
@CommandLine.Option(names = { "--minNumInliers" }, description = "minimally required absolute number of inliers (default: 10)")
73
+
@CommandLine.Option(names = { "--minNumInliers" }, description = "minimally required absolute number of inliers (default: 10, only for RANSAC method)")
65
74
privateintminNumInliers = 10;
66
75
67
-
@CommandLine.Option(names = { "--maxTrust" }, description = "reject candidates with a cost larger than maxTrust * median cost (default: 3)")
76
+
@CommandLine.Option(names = { "--maxTrust" }, description = "reject candidates with a cost larger than maxTrust * median cost (default: 3, only for RANSAC method)")
68
77
privatedoublemaxTrust = 3.0;
69
78
70
79
privateSpimData2dataGlobal;
@@ -100,6 +109,7 @@ public Void call() throws Exception
0 commit comments