what-dog

1.0.4 • Public • Published

what-dog Build Status

Get the breed of a dog from an image using Microsoft's what-dog.

{
  "isDog": true,
  "breed": "Norfolk Terrier",
  "about": "Spirited, small but sturdy, feisty yet sweet personality"
}

Install

$ npm install --save what-dog

Usage

const whatDog = require('what-dog');
 
whatDot('http://imgur.com/B7a15F5.jpg');
    .then(doggyData => {
        console.log(doggyData);
    })
 
//=> {
       isDog: true,
       breed: 'Norfolk Terrier',
       about: 'Spirited, small but sturdy, feisty yet sweet personality'
     }

API

whatDot(imageUrl)

imageUrl

Type: string

Url to the image. Must be on a public server that Microsoft's servers can download to determine the caption.

Returns a promise for the doggy data.

doggy data

{
  isDog: true,
  breed: 'Norfolk Terrier',
  about: 'Spirited, small but sturdy, feisty yet sweet personality'
}

Notes

  • Requires Node 4 or newer.
  • Powered by What-Dog, a free service provided by Microsoft.
  • If you like this, you can read more at https://www.microsoft.com/cognitive-services.
  • This node module was not created by Microsoft.
  • I would consider this module "for testing only" - I do not recommend using in a production system.
  • Microsoft: I made this because I am a fan of the technology. If there are any problems, or you want to use this package name, I'm happy to discuss.

License

MIT © Dylan Greene

Package Sidebar

Install

npm i what-dog

Weekly Downloads

2

Version

1.0.4

License

MIT

Last publish

Collaborators

  • dylang