image-classifier-ts
Version:
Command line tool to auto-classify images, renaming them with appropriate labels. Uses Node and Google Vision API.
18 lines (17 loc) • 427 B
TypeScript
import { Verbosity } from "../output/Verbosity";
export declare type Args = {
imageInputDir: string;
imageOutputDir: string;
options: Options;
};
export declare type Options = {
dryRun: boolean;
filenameFormat: string;
geoCode: boolean;
locationFormat: string;
derivedLocationFormat: string;
minScore: number;
replaceOnMove: boolean;
topNLabels: number;
verbosity: Verbosity;
};