deepin-ocr/src/view/imageview.h
He MingYang 155256cbd9 feat(工程建立): OCR文字识别工程建立
no

Log: no
Change-Id: I6bb42a4ae96f000a1ee937d2c69d1f7e3208e7e3
2021-06-10 19:02:46 +08:00

69 lines
1.7 KiB
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
*图像显示界面
*/
#ifndef IMAGEVIEW_H
#define IMAGEVIEW_H
#include <QGraphicsView>
class QGraphicsPixmapItem;
class ImageView : public QGraphicsView
{
Q_OBJECT
public:
ImageView(QWidget *parent = nullptr);
//通过路径打开图片
void openImage(const QString &path);
//用于鼠标滚轮滑动
qreal windowRelativeScale() const;
qreal imageRelativeScale() const;
void scaleAtPoint(QPoint pos, qreal factor);
void setScaleValue(qreal v);
//自适应窗口
void autoFit();
//鼠标移动事件
void mouseMoveEvent(QMouseEvent *event) override;
//返回当前图片img
const QImage image();
void openFilterImage(QImage img);
public slots:
//适应窗口大小
void fitWindow();
//适应图片大小
void fitImage();
//旋转图片感觉index角度-为左,+为右
void RotateImage(const int &index);
//保存图片
void savecurrentPic();
//另存为
void savecurrentPicAs();
//打开该图片
void openImage(QImage *img);
//窗口大小改变事件
void resizeEvent(QResizeEvent *event) override;
//鼠标滚轮事件
void wheelEvent(QWheelEvent *event) override;
protected:
private:
QString m_currentPath;//当前图片路径
QGraphicsPixmapItem *m_pixmapItem{nullptr};//当前图像的item
bool m_isFitImage = false;//是否适应图片
bool m_isFitWindow = false;//是否适应窗口
qreal m_scal = 1.0;
int m_rotateAngel = 0; //旋转角度
QImage *m_currentImage{nullptr};//当前原始图像
QImage m_FilterImage{nullptr};//当前处理的图像
QImage m_lightContrastImage{nullptr};//亮度曝光度图像
};
#endif // IMAGEVIEW_H