12 lines
205 B
C++
12 lines
205 B
C++
#pragma once
|
|
|
|
#include <QImage>
|
|
#include <opencv2/core.hpp>
|
|
|
|
class ImageConverter final
|
|
{
|
|
public:
|
|
static QImage matToQImage(const cv::Mat &mat);
|
|
static cv::Mat qImageToMat(const QImage &image);
|
|
};
|