UNPKG

ngx-opencv

Version:

Angular service for implementing the OpenCV library in angular based applications

24 lines (23 loc) 642 B
/** * describes a configuration object for the OpenCV service */ export interface OpenCVConfig { /** * path to the directory containing the OpenCV files, in the form of '/path/to/<opencv directory>' * directory must contain the the following files: * --<OpenCvDir> * ----opencv.js * ----opencv_js.wasm */ openCVDirPath?: string; /** * additional callback that will run when OpenCv has finished loading and parsing */ runOnOpenCVInit?: Function; } export interface OpenCVState { ready: boolean; loading: boolean; error: boolean; state: string; }