gpt4 book ai didi

python - 如何将 png 转换为 python 的数据框?

转载 作者:行者123 更新时间:2023-12-01 00:59:48 26 4
gpt4 key购买 nike

我训练了数字识别器的模型 ( https://www.kaggle.com/c/digit-recognizer/data )。输入数据是 csv 文件。文件中的每一行代表一个图像,高度为 28 像素,宽度为 28 像素,总共 784 像素。该模型已准备好使用,但我想知道如何为此输入创建测试数据?如果我有一个带有数字的图像,如何将其转换为数组格式的 28 x 28 像素。

我尝试了下面的代码,但它将图像背景渲染为黄色。 png图像有白色背景,所以我不明白为什么它显示黄色。

import numpy as np
import cv2
import csv
import matplotlib.pyplot as plt

img = cv2.imread('./test.png', 0) # load grayscale image. Shape (28,28)

flattened = img.flatten() # flatten the image, new shape (784,)
row = flattened.reshape(28,28)

plt.imshow(row)
plt.show()

最佳答案

我为您准备了一个小示例,希望它能让您了解如何完成此任务:

我使用此图像作为示例:

example image

完整脚本:

import numpy as np
import cv2
import csv

img = cv2.imread('./1.png', 0) # load grayscale image. Shape (28,28)

flattened = img.flatten() # flatten the image, new shape (784,)

flattened = np.insert(flattened, 0, 0) # insert the label at the beginning of the array, in this case we add a 0 at the index 0. Shape (785,0)


#create column names
column_names = []
column_names.append("label")
[column_names.append("pixel"+str(x)) for x in range(0, 784)] # shape (785,0)

# write to csv
with open('custom_test.csv', 'w') as file:
writer = csv.writer(file, delimiter=';')
writer.writerows([column_names]) # dump names into csv
writer.writerows([flattened]) # add image row
# optional: add addtional image rows

现在您拥有与示例中提供的相同的 csv 结构。

custom_test.csv 输出(缩短):

label;pixel0;pixel1;pixel2;pixel3;pixel4;pixel5;pixel6;pixel7;pixel ...
0;0;0;0;0;0;0;0;0;0;0;0....

编辑:要使用 matplotlib 可视化展平图像,您必须指定颜色图:

row = flattened.reshape(28,28)
plt.imshow(row, cmap='gray') # inverse grayscale is possible with: cmap='gray_r'

关于python - 如何将 png 转换为 python 的数据框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55898311/

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