1、QImage
- 使用bytes数据创建图像,使用方法:
QImage(data, width, height, bytesperline, format)
''
data: 是图像的字节的数据
bytesperline: W*C, 是OpenCV中的ndarray的存储格式([H, W, C], 按[H, W*C]的二维矩阵村粗和),详见
format:QImage.Format_RGB888
''
- 例如:
image为RGB格式的ndarray
img = QImage(image.data, image.shape[1], image.shape[0], image.shape[1]*image.shape[2], QImage.Format_RGB888)
label.setPixmap(QPixmap.fromImage(img))
文章来源地址https://www.toymoban.com/news/detail-637608.html
文章来源:https://www.toymoban.com/news/detail-637608.html
到了这里,关于【PyQt5:QImage】使用bytes字节数据创建图像的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!