summaryrefslogtreecommitdiffstats
path: root/graphics
diff options
context:
space:
mode:
author Willy Sudiarto Raharjo2019-11-01 01:41:55 +0100
committer Willy Sudiarto Raharjo2019-11-01 01:41:55 +0100
commit661923c633d70dca4d4c18de0ad2bfcedec00925 (patch)
treeb8ff0c07601dba3a5ff7b26f1be7845965c8229e /graphics
parentdd3a27e0bd6973c0e94cffd7a636a2182a0a2914 (diff)
downloadslackbuilds-661923c633d70dca4d4c18de0ad2bfcedec00925.tar.gz
graphics/gmic: Add missing patch.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'graphics')
-rw-r--r--graphics/gmic/zart-opencv4.patch59
1 files changed, 59 insertions, 0 deletions
diff --git a/graphics/gmic/zart-opencv4.patch b/graphics/gmic/zart-opencv4.patch
new file mode 100644
index 0000000000..6396db571a
--- /dev/null
+++ b/graphics/gmic/zart-opencv4.patch
@@ -0,0 +1,59 @@
+diff --git a/include/VideoFileSource.h b/include/VideoFileSource.h
+index 0fda14e..8c15178 100644
+--- a/include/VideoFileSource.h
++++ b/include/VideoFileSource.h
+@@ -50,5 +50,7 @@
+ #include <QString>
+ #include <opencv2/opencv.hpp>
++#include <opencv2/videoio.hpp>
++#include <opencv2/videoio/videoio_c.h>
+ #include "ImageSource.h"
+
+ class VideoFileSource : public ImageSource {
+diff --git a/include/WebcamSource.h b/include/WebcamSource.h
+index 8c1911a..9194385 100644
+--- a/include/WebcamSource.h
++++ b/include/WebcamSource.h
+@@ -53,6 +53,8 @@
+ #include <QString>
+ #include <QVector>
+ #include <opencv2/opencv.hpp>
++#include <opencv2/videoio.hpp>
++#include <opencv2/videoio/videoio_c.h>
+ #include "ImageSource.h"
+
+ class QSplashScreen;
+diff --git a/zart.pro b/zart.pro
+index d98a192..ddb2d3b 100644
+--- a/zart.pro
++++ b/zart.pro
+@@ -19,7 +19,7 @@
+ CONFIG += warn_on
+ QT_CONFIG -= no-pkg-config
+ CONFIG += link_pkgconfig
+-PKGCONFIG += opencv fftw3 zlib
++PKGCONFIG += opencv4 fftw3 zlib
+ # LIBS += -lfftw3_threads
+ DEFINES += cimg_use_fftw3 cimg_use_zlib
+
+diff --git a/src/ImageConverter.cpp b/src/ImageConverter.cpp
+--- a/src/ImageConverter.cpp
++++ b/src/ImageConverter.cpp
+@@ -70,7 +70,7 @@
+
+ cv::Mat tmp(in->cols, in->rows, in->depth());
+
+- cvtColor(*in, tmp, (in->channels() == 1) ? CV_GRAY2RGB : CV_BGR2RGB);
++ cvtColor(*in, tmp, (in->channels() == 1) ? cv::COLOR_GRAY2RGB : cv::COLOR_BGR2RGB);
+
+ const unsigned int w3 = 3 * tmp.cols;
+ unsigned char * src = reinterpret_cast<unsigned char *>(tmp.ptr());
+@@ -106,7 +106,7 @@
+ dst += step;
+ }
+ }
+- cvtColor(**out, **out, CV_BGR2RGB);
++ cvtColor(**out, **out, cv::COLOR_BGR2RGB);
+ }
+
+ void ImageConverter::convert(const cimg_library::CImg<float> & in, QImage * out)