1 Star 0 Fork 5

Brian/OpencvDevelop

forked from 阿狸/OpencvDevelop 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
myimagelist.h 1.51 KB
一键复制 编辑 原始数据 按行查看 历史
abcvincent 提交于 2017-08-05 18:06 . first commit
#ifndef MYIMAGELIST_H
#define MYIMAGELIST_H
#include <QWidget>
#include <math.h>
#include <QWheelEvent>
#include <QListWidget>
#include <QGraphicsView> //视图类
#include <QGraphicsScene> //场景类
#include <QGraphicsItem> //图元类
#include "mypixitem.h"
#include <opencv/cv.h>
#include <opencv/highgui.h>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/core/core.hpp>
using namespace cv;
namespace Ui {
class MyImageList;
}
class MyImageList : public QWidget
{
Q_OBJECT
public:
explicit MyImageList(QWidget *parent = 0);
~MyImageList();
void showListItem(Mat dstImage,QString strName,QString controlName);
void intoList(QString listName,QString listV,Mat listMat,int listRow,int marks);
void updataListShow(QString listNames,Mat listMats,int listRow);
void updataListShows(int marks);
void showTableView(Mat,QString,QString,int);
private slots:
void on_listWidget_itemClicked(QListWidgetItem *item);
void receiveDataWM(Mat,QString,QString,int,int);//接收mainwindow打开文件数据
void receiveAction();
signals:
void sendDataList(Mat imageData,QString textData,QString controlName);//发送信号
private:
Ui::MyImageList *ui;
//声明IplImage指针
IplImage *pImg;
Mat pImgs;
QList<QString> listText;//存储图像名称
QList<QString> listData;//存储图像变量名称
QList<QPixmap> pixmapList;//存储图像
QList<Mat> matList;//存储mat图像
};
#endif // MYIMAGELIST_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/brianlin1989/OpencvDevelop.git
[email protected]:brianlin1989/OpencvDevelop.git
brianlin1989
OpencvDevelop
OpencvDevelop
master

搜索帮助