1.3.0 • Published 7 years ago

imagerecongition v1.3.0

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

npm-imagerecognition

Usage

var ImageRecognition = require("imagerecongition");
new ImageRecognition(imageURL,callback);

Example for the picture below:

President of the USA Barack Obama

var ImageRecognition = require("imagerecongition");
new ImageRecognition("https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/President_Barack_Obama.jpg/220px-President_Barack_Obama.jpg",function(res){
  console.log(res); //president obama
});