mirror of
https://github.com/peterbraden/node-opencv.git
synced 2025-12-08 19:45:55 +00:00
17 lines
291 B
C++
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
|