python3-opencv读取图片PyQt5-Qlabel控件显示图片

8 篇文章 1 订阅
  • 版本1——用PyQt来使图片适应label的size

import cv2
import sys
from PyQt5 import QtGui
from PyQt5.QtWidgets import QApplication, QWidget, QLabel, QHBoxLayout


class QPixmapDemo(QWidget):
    def __init__(self):
        super().__init__()
        self.setUI()
        self.setImage()

    #设置ui界面
    def setUI(self):
        self.resize(800, 600)
        self.setWindowTitle('picture')
        self.imgLabel = QLabel()
        self.imgLabel.resize(800, 600) #设置label的大小,图片会适配label的大小
        self.hbox = QHBoxLayout()
        self.hbox.addWidget(self.imgLabel)
        self.setLayout(self.hbox)

    def setImage(self):
        img = cv2.imread('test.jpg') #opencv读取图片
        img2 = cv2.cvtColor(img, cv2.COLOR_BGR2RGB) #opencv读取的bgr格式图片转换成rgb格式
        _image = QtGui.QImage(img2[:], img2.shape[1], img2.shape[0], img2.shape[1] * 3, QtGui.QImage.Format_RGB888) #pyqt5转换成自己能放的图片格式
        jpg_out = QtGui.QPixmap(_image).scaled(self.imgLabel.width(), self.imgLabel.height()) #设置图片大小
        self.imgLabel.setPixmap(jpg_out) #设置图片显示


if __name__ == '__main__':
    app = QApplication(sys.argv)
    win = QPixmapDemo()
    win.show()
    sys.exit(app.exec_())

 

  • 版本2——用opencv来resize图片大小

# # 如:要将一个图片变为32*32大小的
# import cv2
#
# image = cv2.imread('test.jpg')
# res = cv2.resize(image, (800, 600), interpolation=cv2.INTER_CUBIC)
# cv2.imshow('iker', res)
# # cv2.imshow('image', image)
# cv2.waitKey(0)
# cv2.destoryAllWindows()
import cv2
import sys
from PyQt5 import QtGui
from PyQt5.QtWidgets import QApplication, QWidget, QLabel, QHBoxLayout


class QPixmapDemo(QWidget):
    def __init__(self):
        super().__init__()
        self.setUI()
        self.setImage()

    # 设置ui界面
    def setUI(self):
        self.resize(800, 600)
        self.setWindowTitle('picture')
        self.imgLabel = QLabel()
        self.imgLabel.resize(800, 600)  # 设置label的大小,图片会适配label的大小
        self.hbox = QHBoxLayout()
        self.hbox.addWidget(self.imgLabel)
        self.setLayout(self.hbox)

    def setImage(self):
        img = cv2.imread('test.jpg')  # opencv读取图片
        res = cv2.resize(img, (800, 600), interpolation=cv2.INTER_CUBIC) #用cv2.resize设置图片大小
        img2 = cv2.cvtColor(res, cv2.COLOR_BGR2RGB)  # opencv读取的bgr格式图片转换成rgb格式
        _image = QtGui.QImage(img2[:], img2.shape[1], img2.shape[0], img2.shape[1] * 3,
                              QtGui.QImage.Format_RGB888)  # pyqt5转换成自己能放的图片格式
        jpg_out = QtGui.QPixmap(_image)  # 转换成QPixmap
        self.imgLabel.setPixmap(jpg_out)  # 设置图片显示


if __name__ == '__main__':
    app = QApplication(sys.argv)
    win = QPixmapDemo()
    win.show()
    sys.exit(app.exec_())

 效果:

 

  • 14
    点赞
  • 61
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值