0.0.0 • Published 6 years ago

image-classifer v0.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
6 years ago

npm-image-classifer

Usage

var ImageClassifier = require("image-classifer");
new ImageClassifier(imageURL,callback);

Example for the picture below:

President of the USA Barack Obama

var ImageClassifier = require("image-classifer");
new ImageClassifier("https://upload.wikimedia.org/wikipedia/commons/thumb/3/31/Michael_Jackson_in_1988.jpg/220px-Michael_Jackson_in_1988.jpg", res => {
    console.log(res); //michael jackson concert 1988   
});