Skip to content

Commit

Permalink
Renames fast threshold property
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardolundgren committed Jul 25, 2014
1 parent 34dd17b commit e37d7b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/features/Fast.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* @default 40
* @static
*/
tracking.Fast.FAST_THRESHOLD = 40;
tracking.Fast.THRESHOLD = 40;

/**
* Caches coordinates values of the circle surounding the pixel candidate p.
Expand All @@ -57,7 +57,7 @@
var corners = [];

if (opt_threshold === undefined) {
opt_threshold = this.FAST_THRESHOLD;
opt_threshold = this.THRESHOLD;
}

// When looping through the image pixels, skips the first three lines from
Expand Down

0 comments on commit e37d7b8

Please sign in to comment.