0.0.2 • Published 9 years ago

nudity v0.0.2

Weekly downloads
4
License
MIT License
Repository
github
Last release
9 years ago

Nudity

Node.js nudity detector based on Nude.js

Installation

$ npm install nudity

Example

var nudity = require('nudity');

var imagePath = '/path/to/image.jpg';

nudity.scanFile(imagePath, function(err, result) {
  console.log(result + ' = ' + imagePath);
});

API

scanFile(imagePath, callback)

Scans the file given by imagePath. callback returns err and result. result of true means nudity detected, false means not.

scanData(data, callback)

Scans the contents (of a file) given by data. callback returns err and result. result of true means nudity detected, false means not.

Test

node ./test/test.scanFile.js [imagePath]
node ./test/test.scanData.js [imagePath]