File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/org/openstreetmap/josm/plugins/areaselector Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -85,8 +85,8 @@ public class ImageAnalyzer {
85
85
86
86
87
87
// Algorithm params
88
- // default for border = 40
89
- public static final int DEFAULT_COLORTHRESHOLD = 17 ;
88
+ // default for border = 17
89
+ public static final int DEFAULT_COLORTHRESHOLD = 14 ;
90
90
protected int colorThreshold = DEFAULT_COLORTHRESHOLD ;
91
91
92
92
@@ -95,11 +95,11 @@ public class ImageAnalyzer {
95
95
public static final double DEFAULT_TOLERANCEDIST =4 ;
96
96
double toleranceDist = DEFAULT_TOLERANCEDIST ; // original: 2
97
97
98
- // default for border = 0.25
98
+ // default for border = Math.PI / 8
99
99
public static final double DEFAULT_TOLERANCEANGLE = Math .PI / 8 ;
100
100
double toleranceAngle = DEFAULT_TOLERANCEANGLE ; // original Math.PI/10
101
101
102
- // gaussian blur radius
102
+ // gaussian blur radius = 10
103
103
public static final int DEFAULT_BLURRADIUS = 10 ;
104
104
protected int blurRadius = DEFAULT_BLURRADIUS ;
105
105
You can’t perform that action at this time.
0 commit comments