Merge pull request #19 from harshavardhana/master

Make sure not to use C++ headers - fixes #18
This commit is contained in:
Bert Chang 2014-09-09 14:50:56 +08:00
commit 9bbf04a241

View file

@ -7,16 +7,12 @@
#ifndef _GO_OPENCV_BINDING_H_
#define _GO_OPENCV_BINDING_H_
// OpenCV 2.4.x
#include <opencv/cv.h>
#include <opencv/highgui.h>
#include <opencv2/photo/photo_c.h>
#include <opencv2/imgproc/imgproc_c.h>
#include <opencv2/core/core_c.h>
#include <opencv2/core/core.hpp>
#include <opencv2/objdetect/objdetect.hpp>
#include <opencv2/legacy/compat.hpp>
#include <opencv2/legacy/legacy.hpp>
#include <opencv2/core/version.hpp>
// Trackbar
int GoOpenCV_CreateTrackbar(
@ -38,5 +34,3 @@ unsigned GoOpenCV_FOURCC_(
);
#endif // _GO_OPENCV_BINDING_H_