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

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

將 uint32 元組轉(zhuǎn)換為 uint8 的 3d numpy 數(shù)組的最佳方法

將 uint32 元組轉(zhuǎn)換為 uint8 的 3d numpy 數(shù)組的最佳方法

瀟湘沐 2023-07-05 17:55:20
我從外部 api 獲得了以 uint32 元組形式呈現(xiàn)的圖像,其中每個(gè) uint32 由 4 個(gè) uint8 組成,其中包含 r、g、b 和 alpha(始終 = 0),我需要將其轉(zhuǎn)換為格式與我相同的 3d numpy 數(shù)組可以從imageio.imread. 問(wèn)題是,當(dāng)我使用numpy.view顏色順序時(shí),顏色順序是相反的。這是我編寫(xiě)的代碼,可以正常工作,但我想知道是否有更好的轉(zhuǎn)換方法。        frame_buffer_tuple = ... # here we have tuple of width*height length         framebuffer = np.asarray(frame_buffer_tuple).astype(dtype='uint32').view(dtype='uint8').reshape((height, width, 4)) # here I have height x width x 4 numpy array but with inverted colors (red instead of blue) and alpha I don't need         framebuffer = np.stack((framebuffer[:, :, 2], framebuffer[:, :, 1], framebuffer[:, :, 0]), axis=2) # here I've got correct numpy height x width x 3 array我更關(guān)心執(zhí)行時(shí)間,然后是內(nèi)存,但由于我可以擁有 7680 × 4320 圖像,因此兩者可能都很重要。謝謝!
查看完整描述

2 回答

?
Cats萌萌

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

你只需要反轉(zhuǎn)最后一個(gè)維度嗎?嘗試

framebuffer = framebuffer [:, :, :2:-1] # drops alpha


查看完整回答
反對(duì) 回復(fù) 2023-07-05
?
慕姐8265434

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

實(shí)際上有效的是:

framebuffer = np.asarray(frame_buffer_tuple).astype('uint32').view('uint8').reshape((height, width, 4))[:, :, 2::-1]

我暫時(shí)將其標(biāo)記為解決方案,直到有人提出解決該問(wèn)題的方法。


查看完整回答
反對(duì) 回復(fù) 2023-07-05
  • 2 回答
  • 0 關(guān)注
  • 287 瀏覽
慕課專(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)