Skip to content

Commit

Permalink
be a little bit more tolerant
Browse files Browse the repository at this point in the history
  • Loading branch information
r00tat committed Jan 12, 2015
1 parent 79b028e commit 2be8530
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,11 @@ public class ImageAnalyzer {

// Polynomial fitting tolerances
// default for border = 4
public static final double DEFAULT_TOLERANCEDIST=4;
public static final double DEFAULT_TOLERANCEDIST=4.5d;
double toleranceDist = DEFAULT_TOLERANCEDIST; // original: 2

// default for border = Math.PI / 8
public static final double DEFAULT_TOLERANCEANGLE = Math.PI / 8;
public static final double DEFAULT_TOLERANCEANGLE = 4.2d;
double toleranceAngle= DEFAULT_TOLERANCEANGLE; // original Math.PI/10

// gaussian blur radius = 10
Expand Down

0 comments on commit 2be8530

Please sign in to comment.