forked from udarrr/opencv4nodejs-prebuilt-install
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathio.h
32 lines (28 loc) · 736 Bytes
/
io.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#include "macros.h"
#include <opencv2/highgui.hpp>
#include <opencv2/imgproc.hpp>
#include "Mat.h"
#include "VideoCapture.h"
#include "VideoWriter.h"
#include "CatchCvExceptionWorker.h"
#ifndef __FF_IO_H_
#define __FF_IO_H_
class Io {
public:
static NAN_MODULE_INIT(Init);
static NAN_METHOD(Imshow);
static NAN_METHOD(ImshowWait);
static NAN_METHOD(WaitKey);
static NAN_METHOD(MoveWindow);
static NAN_METHOD(DestroyWindow);
static NAN_METHOD(DestroyAllWindows);
static NAN_METHOD(Imread);
static NAN_METHOD(ImreadAsync);
static NAN_METHOD(Imwrite);
static NAN_METHOD(ImwriteAsync);
static NAN_METHOD(Imencode);
static NAN_METHOD(ImencodeAsync);
static NAN_METHOD(Imdecode);
static NAN_METHOD(ImdecodeAsync);
};
#endif