11 lines
211 B
C
11 lines
211 B
C
#ifndef __CV_NODE_H__
|
|
#define __CV_NODE_H__
|
|
|
|
#include <napi.h>
|
|
#include <opencv2/opencv.hpp>
|
|
|
|
void InitMatAPI(Napi::Env env, Napi::Object exports);
|
|
void InitProcAPI(Napi::Env env, Napi::Object exports);
|
|
|
|
#endif
|