Commit 30888089 authored by Andrey Kamaev's avatar Andrey Kamaev

Fix build of various backends

parent 29cfeb7c
......@@ -2,6 +2,7 @@
#include <sstream>
#include "cvconfig.h"
#include "opencv2/core.hpp"
#include "opencv2/core/utility.hpp"
#include "gl_core_3_1.hpp"
#ifdef HAVE_OPENGL
......
This diff is collapsed.
......@@ -949,7 +949,7 @@ void GuiReceiver::showImage(QString name, void* arr)
mat = cvGetMat(arr, &stub);
cv::Mat im(mat);
cv::imshow(name.toStdString(), im);
cv::imshow(name.toUtf8().data(), im);
}
else
{
......
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