UNPKG

image-classifier-ts

Version:

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

8 lines (7 loc) 430 B
import { ImageProperties } from "../model/ImageProperties"; import { Options } from "../utils/args/Args"; import { MapDateToLocation } from "../utils/MapDateToLocation"; import { IOutputter } from "../utils/output/IOutputter"; export declare namespace GeoCoder { function processImage(properties: ImageProperties, options: Options, autoMapDateToLocation: MapDateToLocation, outputter: IOutputter): Promise<ImageProperties>; }