#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(Local target); static NAN_METHOD(Undistort); static NAN_METHOD(InitUndistortRectifyMap); static NAN_METHOD(Remap); static NAN_METHOD(GetStructuringElement); }; #endif