UNPKG

image-classifier-ts

Version:

Command line tool to auto-classify images, renaming them with appropriate labels. Uses Node and Google Vision API.

11 lines (10 loc) 332 B
export declare enum LocationFormatToken { Country = "country", Area1 = "area1", Area2 = "area2", Area3 = "area3" } export declare type LocationNameTokens = Map<LocationFormatToken, string>; export declare namespace LocationNameGenerator { function generate(tokens: LocationNameTokens, format: string): string; }