gpt4 book ai didi

python - 有没有办法在 python 中显示原始图像?

转载 作者:太空宇宙 更新时间:2023-11-03 19:43:18 25 4
gpt4 key购买 nike

我想以 RGB565-Big-Endian 或灰色 16 位 Big-Endian 显示原始图像。这段代码的结果是little-Endian

from cv2 import cv2
import numpy as np
import sys
from struct import *



fd = open('path', 'rb')
rows = 360
cols = 640
f = np.fromfile(fd, dtype=np.int16,count=rows*cols)
im = f.reshape((rows, cols)) #notice row, column format
fd.close()

print(fd)

cv2.imshow('', im)
cv2.waitKey()
cv2.destroyAllWindows()

最佳答案

来自https://docs.scipy.org/doc/numpy/user/basics.byteswapping.html

将第 11 行中的数据类型替换为:

dtype='>i2'

> 代表大端字节序

i代表整数

2代表2个字节

关于python - 有没有办法在 python 中显示原始图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60302926/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com