image-classifier-ts
Version:
Command line tool to auto-classify images, renaming them with appropriate labels. Uses Node and Google Vision API.
10 lines • 387 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Verbosity = void 0;
var Verbosity;
(function (Verbosity) {
Verbosity[Verbosity["Low"] = 1] = "Low";
Verbosity[Verbosity["Medium"] = 2] = "Medium";
Verbosity[Verbosity["High"] = 3] = "High";
})(Verbosity = exports.Verbosity || (exports.Verbosity = {}));
//# sourceMappingURL=Verbosity.js.map