mirror of
https://github.com/peterbraden/node-opencv.git
synced 2025-12-08 19:45:55 +00:00
18 lines
331 B
C++
18 lines
331 B
C++
#ifndef __NODE_IMGPROC_H
|
|
#define __NODE_IMGPROC_H
|
|
|
|
#include "OpenCV.h"
|
|
|
|
/**
|
|
* Implementation of imgproc.hpp functions
|
|
*/
|
|
class ImgProc: public Nan::ObjectWrap {
|
|
public:
|
|
static void Init(Handle<Object> target);
|
|
static NAN_METHOD(Undistort);
|
|
static NAN_METHOD(InitUndistortRectifyMap);
|
|
static NAN_METHOD(Remap);
|
|
};
|
|
|
|
#endif
|