第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

從 numpy 數(shù)組在 PyQt5 中顯示圖像

從 numpy 數(shù)組在 PyQt5 中顯示圖像

函數(shù)式編程 2023-06-13 11:04:58
我有一個(gè)形狀為 numpy 的數(shù)組(500, 500, 3)。我希望它轉(zhuǎn)換成圖像并使用 PyQt5 顯示它。
查看完整描述

1 回答

?
慕工程0101907

TA貢獻(xiàn)1887條經(jīng)驗(yàn) 獲得超5個(gè)贊

我假設(shè)該數(shù)組的類(lèi)型為 uint8 并代表紅色、綠色和藍(lán)色 您可以Pillow為此使用,例如


from PyQt5 import QtWidgets, QtGui


from PIL import Image, ImageQt

import numpy as np


# generate data

table = np.zeros((256,256,3), dtype=np.uint8)

for i in range(256):

    table[:,i,0] = i

    table[i,:,1] = i

table[:,:,2] = (2*255 - table[:,:,0] - table[:,:,1]) // 2


# convert data to QImage using PIL

img = Image.fromarray(table, mode='RGB')

qt_img = ImageQt.ImageQt(img)


app = QtWidgets.QApplication([])

w = QtWidgets.QLabel()

w.setPixmap(QtGui.QPixmap.fromImage(qt_img))

w.show()

app.exec()


查看完整回答
反對(duì) 回復(fù) 2023-06-13
  • 1 回答
  • 0 關(guān)注
  • 273 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)