请编写基于C++和Qt的VS2015项目,实现用pushbutton控制调用opencv实现图片的阈值分割,并在Label中显示出来
时间: 2024-04-15 14:30:19 浏览: 79
用vc实现图像阈值分割.docx
以下是一个基于C++和Qt的VS2015项目,使用PushButton控制调用OpenCV实现图片的阈值分割,并在Label中显示出来的示例代码:
```cpp
#include <opencv2/opencv.hpp>
#include <QApplication>
#include <QMainWindow>
#include <QPushButton>
#include <QLabel>
using namespace cv;
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
MainWindow(QWidget *parent = nullptr)
: QMainWindow(parent)
{
// 创建PushButton
***
阅读全文