Commit 187ab0ca authored by laurentBerger's avatar laurentBerger

include cvconfig.h to use constant HAVE_OPENGL

parent 7cf5de0e
#include <opencv2/opencv.hpp> #include <opencv2/opencv.hpp>
#include "opencv2/core/opengl.hpp" #include "opencv2/core/opengl.hpp"
#include <cvconfig.h>
#include <vector> #include <vector>
#include <map> #include <map>
#include <iostream> #include <iostream>
#ifdef HAVE_OPENGL
#ifdef WIN32 #ifdef WIN32
#define WIN32_LEAN_AND_MEAN 1 #define WIN32_LEAN_AND_MEAN 1
#define NOMINMAX 1 #define NOMINMAX 1
...@@ -20,7 +22,7 @@ ...@@ -20,7 +22,7 @@
#include <GL/gl.h> #include <GL/gl.h>
#include <GL/glu.h> #include <GL/glu.h>
#endif #endif
#endif
using namespace std; using namespace std;
...@@ -107,6 +109,7 @@ float obsX = (float)0, obsY = (float)0, obsZ = (float)-10, tx = (float)0, ty = ( ...@@ -107,6 +109,7 @@ float obsX = (float)0, obsY = (float)0, obsZ = (float)-10, tx = (float)0, ty = (
float thetaObs = (float)-1.570, phiObs = (float)1.570, rObs = (float)10; float thetaObs = (float)-1.570, phiObs = (float)1.570, rObs = (float)10;
int prevX=-1,prevY=-1,prevTheta=-1000,prevPhi=-1000; int prevX=-1,prevY=-1,prevTheta=-1000,prevPhi=-1000;
#ifdef HAVE_OPENGL
struct DrawData struct DrawData
{ {
...@@ -208,9 +211,11 @@ static void onMouse(int event, int x, int y, int flags, void*) ...@@ -208,9 +211,11 @@ static void onMouse(int event, int x, int y, int flags, void*)
} }
} }
#endif
void DrawOpenGLMSER(Mat img, Mat result) void DrawOpenGLMSER(Mat img, Mat result)
{ {
#ifdef HAVE_OPENGL
Mat imgGray; Mat imgGray;
if (img.type() != CV_8UC1) if (img.type() != CV_8UC1)
cvtColor(img, imgGray, COLOR_BGR2GRAY); cvtColor(img, imgGray, COLOR_BGR2GRAY);
...@@ -323,6 +328,7 @@ void DrawOpenGLMSER(Mat img, Mat result) ...@@ -323,6 +328,7 @@ void DrawOpenGLMSER(Mat img, Mat result)
} }
setOpenGlDrawCallback("OpenGL", 0, 0); setOpenGlDrawCallback("OpenGL", 0, 0);
destroyAllWindows(); destroyAllWindows();
#endif
} }
Mat MakeSyntheticImage() Mat MakeSyntheticImage()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment