Initial Linux Qt OpenCV project

This commit is contained in:
luochen570
2026-05-29 22:29:30 +08:00
commit 81d586c032
22 changed files with 1748 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#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);
};