Skip to content

Instantly share code, notes, and snippets.

@ivan3bx
Created March 16, 2016 14:52
Show Gist options
  • Save ivan3bx/dfd750068dd98579ea94 to your computer and use it in GitHub Desktop.
Save ivan3bx/dfd750068dd98579ea94 to your computer and use it in GitHub Desktop.
testing out node-tesseract
var tesseract = require('node-tesseract');
var options = {
l: 'eng',
psm: 1
};
tesseract.process('/home/tesseract/IMG_4918.jpg', options, function(err, text) {
if (err) {
console.error(err);
} else {
console.log(text);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment