python - 将一维字节数组转换为二维 numpy 数组的最快方法

标签 python arrays image numpy

我有一个可以像这样处理的数组:

ba = bytearray(fh.read())[32:]
size = int(math.sqrt(len(ba)))

我可以判断给定的像素是黑色还是白色

iswhite = (ba[i]&1)==1

我如何快速将我的一维字节数组转换为行长度 size(ba[i]&1)==1 的白色像素的二维 numpy 数组以及为别人黑?我这样创建数组:

im_m = np.zeros((size,size,3),dtype="uint8)

最佳答案

import numpy as np

# fh containts the file handle

# go to position 32 where the image data starts
fh.seek(32)

# read the binary data into unsigned 8-bit array
ba = np.fromfile(fh, dtype='uint8')

# calculate the side length of the square array and reshape ba accordingly
side = int(np.sqrt(len(ba)))
ba = ba.reshape((side,side))

# toss everything else apart from the last bit of each pixel
ba &= 1

# make a 3-deep array with 255,255,255 or 0,0,0
img = np.dstack([255*ba]*3)
# or
img = ba[:,:,None] * np.array([255,255,255], dtype='uint8')

有几种方法可以完成最后一步。请注意,如果需要,您会获得相同的数据类型 (uint8)。

关于python - 将一维字节数组转换为二维 numpy 数组的最快方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24518034/

相关文章:

c - 字符串数组中不同出现的次数

javascript - 如何使用 Javascript 获取特定页面上的所有图像源

python - 由于 RunTimeError : maximum recursion depth exceeded in cmp,无法在 OpenERP 中安装额外的模块

用于刷新光标实例的 Python 装饰器

python - 仅使用特定 Csv 列的 KMeans 聚类

c - 在C中对文本文件中的数据进行排序

javascript - 从 json 中检索唯一值

android - 将图标与 Button android 中的文本对齐

c# - 扫描的位图横向读取,翻转? (C#)

python - 你能在 Django 模板中声明多个变量吗?