Browse Source

Add misMatchThreshold example to README

pull/149/head
Rommel Santor 6 years ago
parent
commit
d2ebf39ac2
  1. 8
      README.md

8
README.md

@ -141,7 +141,13 @@ The resemble.compare API provides a convenience function that is used as follows
const compare = require("resemblejs").compare; const compare = require("resemblejs").compare;
function getDiff() { function getDiff() {
const options = {}; const options = {
// stop comparing once determined to be > 5% non-matching; this will
// also enable compare-only mode and no output image will be rendered;
// the combination of these results in a significant speed-up in batch processing
misMatchThreshold: 5
};
// The parameters can be Node Buffers // The parameters can be Node Buffers
// data is the same as usual with an additional getBuffer() function // data is the same as usual with an additional getBuffer() function
compare(image1, image2, options, function(err, data) { compare(image1, image2, options, function(err, data) {

Loading…
Cancel
Save