node-opencv/src/Histogram.h
2017-08-24 19:40:32 +02:00

17 lines
291 B
C++

#ifndef __NODE_HISTOGRAM_H
#define __NODE_HISTOGRAM_H
#include "OpenCV.h"
/**
* Implementation of histogram.hpp functions
*/
class Histogram: public Nan::ObjectWrap {
public:
static void Init(Local<Object> target);
static NAN_METHOD(CalcHist);
static NAN_METHOD(Emd);
};
#endif