UNPKG

@codait/max-image-segmenter

Version:

Identify objects in an image, additionally assigning each pixel of the image to a particular object.

65 lines (64 loc) 1.77 kB
{ "name": "@codait/max-image-segmenter", "version": "0.3.0", "description": "Identify objects in an image, additionally assigning each pixel of the image to a particular object.", "main": "dist/max.imgseg.cjs.js", "module": "dist/max.imgseg.es.js", "jsdelivr": "dist/max.imgseg.min.js", "unpkg": "dist/max.imgseg.min.js", "scripts": { "clean": "rimraf dist && mkdirp dist", "rollup": "rollup --config rollup.config.js", "uglify": "uglifyjs dist/max.imgseg.js -mc --source-map --output dist/max.imgseg.min.js", "copy": "ncp model dist/model", "build": "npm run clean && npm run rollup && npm run uglify", "test": "standard && npm run build && jasmine test/test.js" }, "files": [ "dist", "model" ], "author": "va barbosa (https://github.com/vabarbosa/)", "license": "Apache-2.0", "keywords": [ "image segmenter", "object detection", "model asset exchange", "max", "tensorflow.js", "tensorflowjs", "tensorflow", "tf.js", "tfjs", "machine learning" ], "repository": { "type": "git", "url": "git+https://github.com/CODAIT/max-tfjs-models.git" }, "bugs": { "url": "https://github.com/CODAIT/max-tfjs-models/issues" }, "homepage": "https://github.com/CODAIT/max-tfjs-models/tree/master/image-segmenter#readme", "dependencies": { "@tensorflow/tfjs-node": "^2.0.1" }, "devDependencies": { "canvas": "^2.6.1", "jasmine": "^3.5.0", "jimp": "^0.14.0", "mkdirp": "^1.0.4", "ncp": "^2.0.0", "rimraf": "^3.0.2", "rollup": "^2.23.0", "@rollup/plugin-json": "^4.1.0", "@rollup/plugin-replace": "^2.3.3", "standard": "^14.3.4", "uglify-es": "^3.3.9" }, "standard": { "ignore": [ "dist" ] } }